Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kube lint #39

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/coredns/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: coredns
version: 1.16.4
version: 1.16.5
appVersion: 1.8.4
home: https://coredns.io
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
Expand Down
13 changes: 9 additions & 4 deletions charts/coredns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,12 @@ readinessProbe:
failureThreshold: 5
successThreshold: 1

# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#affinity-v1-core
# specify security configuration that will be applied to a container - https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#securitycontext-v1-core
securityContext:
runAsNonRoot: false
readOnlyRootFilesystem: true

# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#affinity-v1-core
# for example:
# affinity:
# nodeAffinity:
Expand All @@ -185,7 +190,7 @@ affinity: {}
# Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: {}

# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#toleration-v1-core
# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#toleration-v1-core
# for example:
# tolerations:
# - key: foo.bar.com/role
Expand Down Expand Up @@ -269,14 +274,14 @@ autoscaler:
# Optional priority class to be used for the autoscaler pods. priorityClassName used if not set.
priorityClassName: ""

# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#affinity-v1-core
# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#affinity-v1-core
affinity: {}

# Node labels for pod assignment
# Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: {}

# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#toleration-v1-core
# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#toleration-v1-core
tolerations: []

# resources for autoscaler pod
Expand Down