Environment Variables
How your Cobrowse deployment can be configured.
Many of the Cobrowse service component configurations are managed using environment variables specified in ConfigMap
and Secret
resources, and these configurations can be overridden outside of the Helm chart by resources that you manage.
ConfigMap Resources
To see a list of all ConfigMap
resources managed by the Helm chart, you can run:
kubectl get configmap -l "app=cobrowse-cobrowse-enterprise"
NAME DATA AGE
cobrowse-api-envvars 10 25m
cobrowse-frontend-envvars 1 25m
cobrowse-proxy-envvars 4 25m
cobrowse-recording-envvars 3 25m
cobrowse-sockets-envvars 6 25m
Each of these envvars ConfigMap
s can be overridden by creating ConfigMap
resources named (respectively):
cobrowse-api-custom-envvars
cobrowse-frontend-custom-envvars
cobrowse-proxy-custom-envvars
cobrowse-recording-custom-envvars
cobrowse-sockets-custom-envvars
Secret Resources
To see a list of all Secret
resources managed by the Helm chart, you can run:
kubectl get secret -l "app=cobrowse-cobrowse-enterprise"
NAME TYPE DATA AGE
cobrowse-api-envvars Opaque 2 41m
cobrowse-frontend-envvars Opaque 0 41m
cobrowse-proxy-envvars Opaque 0 41m
cobrowse-recording-envvars Opaque 0 41m
cobrowse-sockets-envvars Opaque 2 41m
Each of these envvars Secret
s can be overridden by creating Secret
resources named (respectively):
cobrowse-api-custom-envvars
cobrowse-frontend-venvvars
cobrowse-proxy-custom-envvars
cobrowse-recording-custom-envvars
cobrowse-sockets-custom-envvars
Last updated
Was this helpful?