File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ or [mino](https://github.com/helm/charts/tree/master/stable/minio#configuration)
162162| ` app.rabbitmq.retry_interval ` | Number of seconds to wait between RabbitMQ retries on startup | 10 |
163163| ` app.replicas ` | Number of App pods to start. Experimental! | 1 |
164164| ` app.auth ` | Enable authentication or allow unfettered access (Python boolean string) | ` false ` |
165+ | ` app.disableUserMgmt ` | Opt out of built-in ServiceX user management system | ` false `
165166| ` app.globusClientID ` | Globus application Client ID | - |
166167| ` app.globusClientSecret ` | Globus application Client Secret | - |
167168| ` app.adminEmail ` | Email address for initial admin user
| [email protected] |
Original file line number Diff line number Diff line change 2222 # Enable JWT auth on public endpoints
2323 ENABLE_AUTH={{- ternary "True" "False" .Values.app.auth }}
2424
25+ # Disable user management system
26+ DISABLE_USER_MGMT = {{ ternary "True" "False" .Values.app.disableUserMgmt }}
27+
2528 # Globus configuration
2629 GLOBUS_CLIENT_ID = '{{ .Values.app.globusClientID }}'
2730 GLOBUS_CLIENT_SECRET = '{{ .Values.app.globusClientSecret }}'
You can’t perform that action at this time.
0 commit comments