How can I apply OIDC on k8s datahub-frontend? Just...
# all-things-deployment
n
How can I apply OIDC on k8s datahub-frontend? Just add AUTH_OIDC env like applying OIDC to docker?
e
Hi. You can add them as extraEnvs. I’ve put down an example on the bottom end of this section! https://datahubproject.io/docs/how/auth/sso/configure-oidc-react/#2-configure-datahub-frontend-server Let us know if anything doesn’t work on this front
❤️ 1
n
It works! thanks 👏
f
Hello! I have the same question... How do you need to modify the helm install command to pass the parameters?
e
Hey @faint-insurance-90714 If you are currently using the vanilla values.yaml file to deploy (like
helm install datahub charts/datahub
)
you need to first create a separate values.yaml file which will overlay on top of the vanilla values.yaml file https://github.com/acryldata/datahub-helm-fork/blob/master/charts/datahub/values.yaml
in your custom values.yaml you can specify the fields I mentioned above
Copy code
datahub-frontend:
  extraEnvs:
    ...
once you do that you can run
Copy code
helm upgrade --install datahub charts/datahub --values <<path-to-custom-values-file>>
f
Thanks! I think there is a bug with the newest helm version and booleans do not work, Nonetheless --set-value does the trick
e
booleans should be quoted!
let me update
doc
g
@lemon-receptionist-90470