Skip to content

Commit

Permalink
Fix indentation for security block in auth_setup.rst (#5968)
Browse files Browse the repository at this point in the history
I believe `security` belongs under `server`.

Without making this change, the auth didn't work for me. I further checked this by noting that the example helm file listed on https://artifacthub.io/packages/helm/flyte/flyte-core also places `security` under `server`

`configmap.adminServer.server.security.useAuth`

Signed-off-by: jkh <[email protected]>
  • Loading branch information
jkhales authored Nov 7, 2024
1 parent 9486172 commit fef67b8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/deployment/configuration/auth_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,15 @@ Apply OIDC Configuration
httpPort: 8088
grpc:
port: 8089
security:
secure: false
useAuth: true
allowCors: true
allowedOrigins:
# Accepting all domains for Sandbox installation
- "*"
allowedHeaders:
- "Content-Type"
security:
secure: false
useAuth: true
allowCors: true
allowedOrigins:
# Accepting all domains for Sandbox installation
- "*"
allowedHeaders:
- "Content-Type"
auth:
appAuth:
thirdPartyConfig:
Expand Down

0 comments on commit fef67b8

Please sign in to comment.