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:
parent
7ad09a972f
commit
ea8c23dc09
2 changed files with 5 additions and 1 deletions
|
@ -60,7 +60,7 @@ spec:
|
|||
- {{ .name }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
secretName: argocd-server-tls
|
||||
secretName: {{ .Values.server.ingress.secretName }}
|
||||
{{- end }}
|
||||
{{- with .Values.server.ingress.extraTls }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
|
|
|
@ -2051,6 +2051,10 @@ server:
|
|||
# -- Defines which ingress controller will implement the resource
|
||||
ingressClassName: ""
|
||||
|
||||
# -- Defines the secret name for the ingress tls
|
||||
|
||||
secretName: argocd-server-tls
|
||||
|
||||
# -- Argo CD server hostname
|
||||
# @default -- `""` (defaults to global.domain)
|
||||
hostname: ""
|
||||
|
|
Loading…
Reference in a new issue