This fix is on for ingress for argocd-server. The tls secret is variablized.

The secret can not be a static value and it absolutely does not make sens eto use extyra

Signed-off-by: Arpan Chatterjee <btwseeu78@gmail.com>
This commit is contained in:
Arpan Chatterjee 2024-04-23 20:35:08 +05:30
parent 7ad09a972f
commit ea8c23dc09
2 changed files with 5 additions and 1 deletions

View file

@ -60,7 +60,7 @@ spec:
- {{ .name }} - {{ .name }}
{{- end }} {{- end }}
{{- end }} {{- end }}
secretName: argocd-server-tls secretName: {{ .Values.server.ingress.secretName }}
{{- end }} {{- end }}
{{- with .Values.server.ingress.extraTls }} {{- with .Values.server.ingress.extraTls }}
{{- toYaml . | nindent 4 }} {{- toYaml . | nindent 4 }}

View file

@ -2051,6 +2051,10 @@ server:
# -- Defines which ingress controller will implement the resource # -- Defines which ingress controller will implement the resource
ingressClassName: "" ingressClassName: ""
# -- Defines the secret name for the ingress tls
secretName: argocd-server-tls
# -- Argo CD server hostname # -- Argo CD server hostname
# @default -- `""` (defaults to global.domain) # @default -- `""` (defaults to global.domain)
hostname: "" hostname: ""