28 lines
926 B
Markdown
Raw Normal View History

2022-03-30 21:08:44 +00:00
# Configure OpenMetadata Helm
2022-03-10 08:59:13 +00:00
2022-03-30 21:08:44 +00:00
## Update Helm Values
2022-03-10 08:59:13 +00:00
2022-03-30 21:08:44 +00:00
Once the `client id` and `client secret` are generated, see the snippet below for an example of where to place the `client id` value and update authorizer configurations.
2022-03-10 08:59:13 +00:00
```
2022-03-30 21:08:44 +00:00
global:
...
authorizer:
className: "org.openmetadata.catalog.security.DefaultAuthorizer"
# JWT Filter
containerRequestFilter: "org.openmetadata.catalog.security.JwtFilter"
initialAdmin: "suresh"
botPrincipal: "ingestion-bot"
2022-03-10 08:59:13 +00:00
provider: "google"
publicKeyUrls:
2022-03-30 21:08:44 +00:00
provider: "google"
- "https://www.googleapis.com/oauth2/v3/certs"
2022-03-10 08:59:13 +00:00
authority: "https://accounts.google.com"
clientId: "{client id}"
callbackUrl: "http://localhost:8585/callback"
```
2022-03-30 21:08:44 +00:00
### Upgrade Helm Release
2022-03-10 08:59:13 +00:00
2022-03-30 21:08:44 +00:00
Head towards [upgrade-openmetadata-on-kubernetes.md](../../../../upgrade/upgrade-on-kubernetes/upgrade-openmetadata-on-kubernetes.md "mention") to upgrade your OpenMetadata Helm Release.