astonishing-dusk-99990
03/29/2023, 9:21 AMdatahub-frontend:
enabled: true
image:
repository: linkedin/datahub-frontend-react
tag: "v0.10.0" # # defaults to .global.datahub.version
resources:
limits:
memory: 1400Mi
requests:
cpu: 100m
memory: 512Mi
# Set up ingress to expose react front-end
ingress:
enabled: false
oidcAuthentication: # OIDC auth based on <https://datahubproject.io/docs/authentication/guides/sso/configure-oidc-react>
enabled: false
extraEnvs:
- name: AUTH_JAAS_ENABLED
value: "true"
- name: AUTH_OIDC_ENABLED
value: "true"
- name: AUTH_OIDC_CLIENT_ID
value: "your_oidc_client_id"
- name: AUTH_OIDC_CLIENT_SECRET
value: your_client_secret
- name: AUTH_OIDC_DISCOVERY_URI
value: "<https://accounts.google.com/.well-known/openid-configuration>"
- name: AUTH_OIDC_BASE_URL
value: "<http://localhost:9002>"
- name: AUTH_OIDC_USER_NAME_CLAIM
value: "email"
- name: AUTH_OIDC_USER_NAME_CLAIM_REGEX
value: "([^@]+)"
extraVolumes:
- name: datahub-users
secret:
defaultMode: 0444
secretName: datahub-users-secret
extraVolumeMounts:
- name: datahub-users
mountPath: /datahub-frontend/conf/user.props
#mountPath: /etc/datahub/plugins/frontend/auth/user.props
subPath: user.props
And then I followed this article to set up google and already set up my Authorized Javascript Origins and Authorized Redirect URLs in attachment below.
However when I tested, It showed google sign in with my personal gmail and work gmail. Then, first I tried to test with my personal gmail and the result is as expected which is access blocked, but when I use my work gmail always refused to connect like attachment below.
My question, what’s the problem here can anyone here help me?
Notes:
• I already allow port 9002 in firewall rule
• My version image is 0.10.0
• Deployed using helm chart on kubernetes clusterastonishing-answer-96712
04/03/2023, 8:36 PMastonishing-dusk-99990
04/04/2023, 1:19 AMastonishing-answer-96712
04/07/2023, 9:21 PM