UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 7771fbfb authored by Jason Krause's avatar Jason Krause :8ball: Committed by Micah Nagel
Browse files

Resolve "Annotate ArgoCD pods with Istio version"

parent 0323799e
No related branches found
No related tags found
2 merge requests!1386Master,!1247Resolve "Annotate ArgoCD pods with Istio version"
......@@ -15,6 +15,11 @@ global:
imagePullPolicy: {{ .Values.imagePullPolicy }}
imagePullSecrets:
- name: private-registry
{{- $istioInjection := (and (eq (dig "istio" "injection" "enabled" .Values.addons.argocd) "enabled") .Values.istio.enabled) }}
{{- if $istioInjection }}
podAnnotations:
{{ include "istioAnnotation" . }}
{{- end }}
controller:
image:
......@@ -50,6 +55,14 @@ redis-bb:
enabled: true
namespace: monitoring
{{- end }}
{{- if $istioInjection }}
master:
podAnnotations:
{{ include "istioAnnotation" . }}
replica:
podAnnotations:
{{ include "istioAnnotation" . }}
{{- end }}
server:
image:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment