26 lines
925 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"
containerRequestFilter: "org.openmetadata.catalog.security.JwtFilter"
initialAdmin: "suresh"
botPrincipal: "ingestion-bot"
2022-03-10 08:59:13 +00:00
provider: "auth0"
publicKeyUrls:
2022-03-30 21:08:44 +00:00
provider: "auth0"
- "https://parth-panchal.us.auth0.com/.well-known/jwks.json"
2022-03-10 08:59:13 +00:00
authority: "https://parth-panchal.us.auth0.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.