UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit d8566531 authored by Micah Nagel's avatar Micah Nagel
Browse files

Merge branch '659-notls-bug-fix' into 'master'

fix(istio-controlplane): helm works with no tls

Closes #659

See merge request platform-one/big-bang/bigbang!763
parents b98983b1 8d2caf9e
No related branches found
No related tags found
1 merge request!763fix(istio-controlplane): helm works with no tls
Pipeline #429746 passed
......@@ -6,7 +6,7 @@ For backwards compatibility, get key/cert from .Values.istio.ingress
{{- $default := .Values.istio.ingress | default dict -}}
{{- range $name, $values := .Values.istio.gateways }}
{{- if or (and $values.tls.cert $values.tls.key) (and $default.cert $default.key) }}
{{- if or (and (dig "tls" "cert" "" $values) (dig "tls" "key" "" $values)) (and $default.cert $default.key) }}
apiVersion: v1
kind: Secret
metadata:
......
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