<@U06RKAMK0UC> Can I add additional clients to the...
# ask-ai
r
@ancient-wolf-19325 Can I add additional clients to the internal authorization server of flyte?
a
Yes, you can add additional clients to the internal authorization server of Flyte. This can be done by configuring the
values.yaml
file for your Flyte deployment. According to the Flyte values.yaml file, you can specify additional clients under the
auth
section. Here is an example configuration snippet:
Copy code
auth:
  enabled: true
  enableAuthServer: true
  oidc:
    baseUrl: "https://your-oidc-provider.com"
    clientId: "flyteclient"
    clientSecret: "your-client-secret"
  internal:
    clientId: "flytepropeller"
    clientSecret: "your-propeller-secret"
  flyteClient:
    clientId: "flytectl"
    redirectUri: "http://localhost:53593/callback"
    scopes:
      - all
  authorizedUris:
    - "https://your-allowed-uri.com"
Would you like more details on how to configure this or any other aspect of Flyte's internal authorization server? Sources: - Flyte values.yaml file 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.