Skip to content

Commit

Permalink
Merge pull request #39 from solidDoWant/master
Browse files Browse the repository at this point in the history
Fixed missing secondary value from Helm chart
  • Loading branch information
networkop authored Aug 9, 2021
2 parents 3f596a2 + 6039aac commit b15701d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions charts/k8s-gateway/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ data:
k8s_gateway "{{ required "Delegated domain ('domain') is mandatory " .Values.domain }}" {
apex {{ .Values.apex | default (include "k8s-gateway.fqdn" .) }}
ttl {{ .Values.ttl }}
{{- if .Values.secondary }}
secondary {{ .Values.secondary }}
{{- end }}
{{- if .Values.watchedResources }}
resources {{ join " " .Values.watchedResources }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/k8s-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resources: {}
watchedResources: []

# Service name of a secondary DNS server (should be `serviceName.namespace`)
secondaryDNS: ""
secondary: ""

# Override the default `serviceName.namespace` domain apex
apex: ""
Expand Down

0 comments on commit b15701d

Please sign in to comment.