From a5a397e7da026c9277c1793fd2d6bfc0e9ba71fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20L=C3=A9obal?= Date: Thu, 17 Aug 2023 10:13:16 +0200 Subject: [PATCH] switch `allowImplicitLogin` to true by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Olivier LĂ©obal --- charts/substra-backend/README.md | 2 +- charts/substra-backend/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/substra-backend/README.md b/charts/substra-backend/README.md index 9f633afc6..f647ec72d 100644 --- a/charts/substra-backend/README.md +++ b/charts/substra-backend/README.md @@ -45,7 +45,7 @@ See [UPGRADE.md](https://github.com/Substra/substra-backend/blob/main/charts/sub | `server.commonHostDomain` | The common host under which the backend and frontend are served | `""` | | `server.uwsgiProcesses` | The number of uwsgi processes | `20` | | `server.uwsgiThreads` | The number of uwsgi threads | `10` | -| `server.allowImplicitLogin` | Allow clients to get API tokens directly with username+password on the `/api-token-auth/` endpoint (ie `Client.login` in the Substra SDK) | `false` | +| `server.allowImplicitLogin` | Allow clients to get API tokens directly with username+password on the `/api-token-auth/` endpoint (ie `Client.login` in the Substra SDK) | `true` | | `server.image.registry` | Substra backend server image registry | `ghcr.io` | | `server.image.repository` | Substra backend server image repository | `substra/substra-backend` | | `server.image.tag` | Substra backend server image tag (defaults to AppVersion) | `nil` | diff --git a/charts/substra-backend/values.yaml b/charts/substra-backend/values.yaml index f4b596051..e0cef4db6 100644 --- a/charts/substra-backend/values.yaml +++ b/charts/substra-backend/values.yaml @@ -55,7 +55,7 @@ server: commonHostDomain: "" uwsgiProcesses: 20 uwsgiThreads: 10 - allowImplicitLogin: false + allowImplicitLogin: true ## Substra backend image version ## @param server.image.registry Substra backend server image registry