You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When doing a nebari render with a config file that includes a non-default namespace, I noticed an env variable (CHECK_URL) is included in the manifests of the 11-kubernetes-kuberhealthy-healthchecks that still points to the dev namespace
Expected behavior
The CHECK_URL domain needs to include the namespace where the checked resources are deployed
OS and architecture in which you are running Nebari
Mac OS Sequoia (Apple Silicon)
How to Reproduce the problem?
Do nebari render with a namespace other than dev configured
Command output
Below is a part of the rendered file `stages/11-kubernetes-kuberhealthy-healthchecks/manifests/comcast.github.io_v1_kuberhealthycheck_conda-store-http-check.yaml`. The `metadata.namespace` is correct but the CHECK_URL env should be for the namespace, i.e. `spec.podSpec.containers[0].env[0].value=http://nebari-conda-store-server.custom:5000`
The rendered manifests for jupyterhub and Keycloak have similar issues for`CHECK_URL` ends
apiVersion: comcast.github.io/v1
kind: KuberhealthyCheck
metadata:
name: conda-store-http-check
namespace: custom
spec:
podSpec:
containers:
- env:
- name: CHECK_URL
value: http://nebari-conda-store-server.dev:5000
Describe the bug
When doing a
nebari render
with a config file that includes a non-default namespace, I noticed an env variable (CHECK_URL) is included in the manifests of the 11-kubernetes-kuberhealthy-healthchecks that still points to the dev namespaceExpected behavior
The CHECK_URL domain needs to include the namespace where the checked resources are deployed
OS and architecture in which you are running Nebari
Mac OS Sequoia (Apple Silicon)
How to Reproduce the problem?
Do
nebari render
with a namespace other thandev
configuredCommand output
The text was updated successfully, but these errors were encountered: