Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify values.yaml #177

Merged
merged 1 commit into from
Oct 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions chart/k8gb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ global:
k8gb:
imageRepo: absaoss/k8gb # image tag is defined in Chart.AppVersion, see Chart.yaml
ingressNamespace: "k8gb"
dnsZone: &dnsZone "cloud.example.com" # dnsZone controlled by gslb
edgeDNSZone: &edgeDNSZone "example.com" # main zone which would contain gslb zone to delegate
edgeDNSServer: &edgeDNSServer "1.1.1.1" # to handle splitbrain situation with TXT timestamp
dnsZone: "cloud.example.com" # dnsZone controlled by gslb
edgeDNSZone: "example.com" # main zone which would contain gslb zone to delegate
edgeDNSServer: "1.1.1.1" # to handle splitbrain situation with TXT timestamp
clusterGeoTag: "eu" # used for places where we need to distinguish between differnet Gslb instances
extGslbClustersGeoTags: "us" # comma-separated list of external gslb geo tags to pair with
hostAlias: # use https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ inside operator pod. Useful for advanced testing scenarios and to break dependency on EdgeDNS for cross k8gb collaboration
Expand Down Expand Up @@ -75,7 +75,7 @@ coredns:
- name: forward
parameters: . /etc/resolv.conf
- name: etcd
parameters: *dnsZone
parameters: .
configBlock: |-
stubzones
path /skydns
Expand Down