1. Confirm there are secrets named "PACKAFE_NAME-values" listed in the
tap-install namespace.
$ kubectl -n tap-install get secrets | grep -i "values"
accelerator-tap-install-values Opaque 1 32d
accelerator-values Opaque 1 37d
api-auto-registration-values Opaque 1 37d
api-portal-values Opaque 1 37d
......
2. We are using tap-gui-values secret as an instance here. Retrieve the values.yaml setting for tap-gui package by running:
$ kubectl -n tap-install get secret tap-gui-values \
-o json | jq -r '.data."values.yaml"' | base64 -d
ingressDomain: xyz.com
ca_cert_data: ""
service_type: ClusterIP
deployment:
replicas: 3
app_config:
proxy:
/metadata-store:
target: https://metadata-store-app.metadata-store:8443/api/v1
......