Skip to content

Commit 8c61394

Browse files
authored
Merge pull request opencloud-eu#85 from kastl-ars/20250613_remove_basicAuth
[opencloud] remove the enableBasicAuth variable, as Basic Auth should not be used
2 parents c2dc259 + dad79b5 commit 8c61394

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

charts/opencloud/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ This will prepend `my-registry.com/` to all image references in the chart. For e
248248
| `opencloud.logColor` | Enable log color | `false` |
249249
| `opencloud.logPretty` | Enable pretty logging | `false` |
250250
| `opencloud.insecure` | Insecure mode (for self-signed certificates) | `true` |
251-
| `opencloud.enableBasicAuth` | Enable basic auth | `false` |
252251
| `opencloud.adminPassword` | Admin password | `admin` |
253252
| `opencloud.createDemoUsers` | Create demo users | `false` |
254253
| `opencloud.resources` | CPU/Memory resource requests/limits | `{}` |

charts/opencloud/templates/opencloud/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ spec:
162162
value: {{ tpl (toString .Values.opencloud.insecure) . | quote }}
163163
# Basic auth (only needed when not using Keycloak)
164164
- name: PROXY_ENABLE_BASIC_AUTH
165-
value: {{ tpl (toString .Values.opencloud.enableBasicAuth) . | quote }}
165+
value: false
166166
# These vars are needed to the csp config file to include the web office apps and the importer
167167
- name: ONLYOFFICE_DOMAIN
168168
value: "{{ .Values.global.domain.onlyoffice }}"

charts/opencloud/values.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,6 @@ opencloud:
434434
logPretty: false
435435
# Insecure mode (for self-signed certificates)
436436
insecure: true
437-
# Enable basic auth (set to false to use Keycloak only)
438-
enableBasicAuth: "{{ not .Values.keycloak.enabled }}"
439437
# Admin password
440438
adminPassword: admin
441439
# Create demo users

0 commit comments

Comments
 (0)