Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ or [mino](https://github.com/helm/charts/tree/master/stable/minio#configuration)
| `app.rabbitmq.retry_interval` | Number of seconds to wait between RabbitMQ retries on startup | 10 |
| `app.replicas` | Number of App pods to start. Experimental! | 1 |
| `app.auth` | Enable authentication or allow unfettered access (Python boolean string) | `false` |
| `app.disableUserMgmt` | Opt out of built-in ServiceX user management system | `false`
| `app.globusClientID` | Globus application Client ID | - |
| `app.globusClientSecret` | Globus application Client Secret | - |
| `app.adminEmail` | Email address for initial admin user | [email protected] |
Expand Down
1 change: 1 addition & 0 deletions docs/deployment/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ parameters for the [rabbitMQ](https://github.com/bitnami/charts/tree/master/bitn
| `app.rabbitmq.retry_interval` | Number of seconds to wait between RabbitMQ retries on startup | 10 |
| `app.replicas` | Number of App pods to start. Experimental! | 1 |
| `app.auth` | Enable authentication or allow unfettered access (Python boolean string) | `false` |
| `app.disableUserMgmt` | Opt out of built-in ServiceX user management system | `false` |
| `app.globusClientID` | Globus application Client ID | - |
| `app.globusClientSecret` | Globus application Client Secret | - |
| `app.adminEmail` | Email address for initial admin user | [email protected] |
Expand Down
3 changes: 3 additions & 0 deletions servicex/templates/app/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ data:
# Enable JWT auth on public endpoints
ENABLE_AUTH={{- ternary "True" "False" .Values.app.auth }}

# Disable user management system
DISABLE_USER_MGMT = {{ ternary "True" "False" .Values.app.disableUserMgmt }}

# Globus configuration
GLOBUS_CLIENT_ID = '{{ .Values.app.globusClientID }}'
GLOBUS_CLIENT_SECRET = '{{ .Values.app.globusClientSecret }}'
Expand Down
1 change: 1 addition & 0 deletions servicex/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ app:
pullPolicy: Always
replicas: 1
auth: false
disableUserMgmt: false
validateTransformerImage: true

# Globus configuration - obtain these at https://auth.globus.org/v2/web/developers
Expand Down