Hello i’m deploying datahub with helm3 and i’m cur...
# getting-started
b
Hello i’m deploying datahub with helm3 and i’m curious how can i set sso authentification to frontend server how can i set sso to my datahub? please help thank you
b
Hi there! We generally use the "extraEnvs" field to do this 🙂
For example, our datahub-frontend container is configured as follows:
Copy code
datahub-frontend:
    enabled: true
    image:
      tag: "head"
      pullPolicy: Always
    extraEnvs:
      - name: AUTH_OIDC_ENABLED
        value: "true"
      - name: AUTH_OIDC_CLIENT_ID
        value: <oidc client id> 
      - name: AUTH_OIDC_CLIENT_SECRET
        valueFrom:
          secretKeyRef:
            name: oidc-secret
            key: oidc-secret
      - name: AUTH_OIDC_DISCOVERY_URI
        value: <oidc discovery uri> 
      - name: AUTH_OIDC_BASE_URL
        value: <https://datahub.acryl.io>
      - name: AUTH_OIDC_SCOPE
        value: "openid email profile"
      - name: AUTH_OIDC_USER_NAME_CLAIM
        value: email