Skip to content

Commit

Permalink
helm: renamed podsAnnotations variable into podAnnotations
Browse files Browse the repository at this point in the history
This change follows-up onto #12189 (comment)

Signed-off-by: Maxime VISONNEAU <maxime.visonneau@gmail.com>
  • Loading branch information
mvisonneau committed Oct 10, 2020
1 parent b92b7c6 commit 548cf75
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
# gets priority scheduling.
# https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/
scheduler.alpha.kubernetes.io/critical-pod: ""
{{- with .Values.podsAnnotations }}{{- toYaml . | nindent 8 }}{{- end }}
{{- with .Values.podAnnotations }}{{- toYaml . | nindent 8 }}{{- end }}
labels:
k8s-app: cilium
{{- if .Values.keepDeprecatedLabels }}
Expand Down
2 changes: 1 addition & 1 deletion install/kubernetes/cilium/charts/agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image: cilium
maxUnavailable: 2

# Additional annotations for the agent pods
podsAnnotations: {}
podAnnotations: {}

# Specifies annotation for service accounts
serviceAccount:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
prometheus.io/port: {{ .Values.global.operatorPrometheus.port | quote }}
prometheus.io/scrape: "true"
{{- end }}
{{- with .Values.podsAnnotations }}{{- toYaml . | nindent 8 }}{{- end }}
{{- with .Values.podAnnotations }}{{- toYaml . | nindent 8 }}{{- end }}
labels:
io.cilium/app: operator
name: cilium-operator
Expand Down
2 changes: 1 addition & 1 deletion install/kubernetes/cilium/charts/operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ serviceAccount:
resources: {}

# Additional annotations for the operator pods
podsAnnotations: {}
podAnnotations: {}

# Number of replicas to run for cilium operator deployment.
numReplicas: 2
Expand Down

0 comments on commit 548cf75

Please sign in to comment.