bug in BB 0.17.0's logic of the hostname --> domain keyvalue rename
Bug
BigBang Version
0.17.0
Description
I updated the bb engineering cohort labs from 0.15.3 --> 0.17.0 and everything broke all at once / found lots of issues, so I created #856 (closed), #857 (closed), added issue related notes to #825 (closed), and also ran into #802 (closed).
I noticed ingress stopped working so I checked the release notes. and saw hostname got renamed to domain
so I updated ~/Desktop/bootstrap/dev/configmap.yaml (where bootstrap = my clone of customer template repo)
line 1 from
hostname: bigbang.dev
to
domain: chrism.bigbang.dev
My helm values ended up looking like this:
helm get values bigbang -n=bigbang
...
domain: chrism.bigbang.dev
...
hostname: bigbang.dev
k get vs -A
NAMESPACE NAME GATEWAYS HOSTS AGE
jaeger jaeger [istio-system/public] [tracing.bigbang.dev] 143m
kiali kiali [istio-system/public] [kiali.bigbang.dev] 142m
logging kibana [istio-system/public] [kibana.bigbang.dev] 147m
monitoring monitoring-monitoring-kube-alertmanager [istio-system/public] [alertmanager.bigbang.dev] 145m
monitoring monitoring-monitoring-kube-grafana [istio-system/public] [grafana.bigbang.dev] 145m
monitoring monitoring-monitoring-kube-prometheus [istio-system/public] [prometheus.bigbang.dev] 145m
The bug is that I believe domain should take precedence over hostname.
based on https://repo1.dso.mil/platform-one/big-bang/bigbang/-/merge_requests/843
which was mentioned in the 1.17.0 release notes.