Akash Jain 0628d01fe4
chore(docs): Update k8s snippet of Google SSO (#15286)
* chore(docs): Update k8s snippet of Google SSO

* chore: Update code snippets for jwks config url

* chore(docs): Add a note on JWKS Url Reachability
2024-02-21 09:30:17 +01:00

995 B

title slug
Google SSO for Kubernetes /deployment/security/google/kubernetes

Google SSO for Kubernetes

Check the Helm information here.

Once the Client Id is generated, see the snippet below for an example of where to place the client id value and update the authorizer configurations in the values.yaml.

openmetadata:
  config:
    authorizer:
      className: "org.openmetadata.service.security.DefaultAuthorizer"
      containerRequestFilter: "org.openmetadata.service.security.JwtFilter"
      initialAdmins:
        - "user1"
        - "user2"
      principalDomain: "open-metadata.org"
    authentication:
      provider: "google"
      publicKeys:
        - "https://www.googleapis.com/oauth2/v3/certs"
      authority: "https://accounts.google.com"
      clientId: "{client id}"
      callbackUrl: "http://localhost:8585/callback"

{% partial file="/v1.1/deployment/configure-ingestion.md" /%}