UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 5b03ac61 authored by Patrick Kelly's avatar Patrick Kelly :snake: Committed by Ryan Garcia
Browse files

ArgoCD - Support externally managed Redis

parent a41eed69
No related branches found
No related tags found
2 merge requests!1658Draft: Merge branch 'tempo_tracing_updates' into 'master',!1424ArgoCD - Support externally managed Redis
......@@ -33,10 +33,21 @@ dex:
imagePullSecrets:
- name: private-registry
redis:
{{- if and .Values.addons.argocd.redis.host .Values.addons.argocd.redis.port }}
externalEndpoint: {{ .Values.addons.argocd.redis.host }}:{{ .Values.addons.argocd.redis.port }}
enabled: false
{{- end }}
redis-bb:
{{- if and .Values.addons.argocd.redis.host .Values.addons.argocd.redis.port }}
enabled: false
{{- else }}
enabled: true
{{- end }}
image:
pullPolicy: {{ .Values.imagePullPolicy }}
enabled: true
auth:
enabled: false
{{- if .Values.monitoring.enabled }}
......
......@@ -630,7 +630,7 @@ addons:
git:
repo: https://repo1.dso.mil/platform-one/big-bang/apps/core/argocd.git
path: "./chart"
tag: "3.33.5-bb.5"
tag: "3.33.5-bb.6"
# -- Flux reconciliation overrides specifically for the ArgoCD Package
flux: {}
......@@ -639,6 +639,14 @@ addons:
ingress:
gateway: ""
redis:
# -- Hostname of a pre-existing Redis to use for ArgoCD.
# Entering connection info will enable external Redis and will auto-create any required secrets.
host: ""
# -- Port of a pre-existing Redis to use for ArgoCD.
port: ""
sso:
# -- Toggle SSO for ArgoCD on and off
enabled: false
......
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