do not strip the HP_SHARED_KEY from manual-install and helm-chart (#8586)

This commit is contained in:
Simon L.
2026-08-18 15:08:41 +02:00
committed by GitHub
7 changed files with 9 additions and 2 deletions
+2
View File
@@ -198,6 +198,7 @@ services:
- WHITEBOARD_SECRET
- WHITEBOARD_ENABLED
- HARP_ENABLED
- HP_SHARED_KEY
stop_grace_period: 600s
restart: unless-stopped
shm_size: 134217728
@@ -523,6 +524,7 @@ services:
start_interval: 5s
retries: 9
environment:
- HP_SHARED_KEY
- NC_INSTANCE_URL=https://${NC_DOMAIN}
- HP_FRP_DISABLE_TLS=true
- TZ=${TIMEZONE}
+1
View File
@@ -1,6 +1,7 @@
DATABASE_PASSWORD= # TODO! This needs to be a unique and good password!
EUROOFFICE_SECRET= # TODO! This needs to be a unique and good password!
FULLTEXTSEARCH_PASSWORD= # TODO! This needs to be a unique and good password!
HP_SHARED_KEY= # TODO! This needs to be a unique and good password!
IMAGINARY_SECRET= # TODO! This needs to be a unique and good password!
NC_DOMAIN=yourdomain.com # TODO! Needs to be changed to the domain that you want to use for Nextcloud.
NEXTCLOUD_PASSWORD= # TODO! This is the password of the initially created Nextcloud admin with username "admin".
-1
View File
@@ -45,7 +45,6 @@ sed -i 's|- ip_binding: |- |' containers.yml
sed -i '/AIO_TOKEN/d' containers.yml
sed -i '/AIO_URL/d' containers.yml
sed -i '/DOCKER_SOCKET_PROXY_ENABLED/d' containers.yml
sed -i '/HP_SHARED_KEY/d' containers.yml
sed -i '/ADDITIONAL_TRUSTED_PROXY/d' containers.yml
sed -i '/TURN_DOMAIN/d' containers.yml
sed -i '/NC_AIO_VERSION/d' containers.yml
+1 -1
View File
@@ -1,6 +1,6 @@
name: nextcloud-aio-helm-chart
description: A generated Helm Chart for Nextcloud AIO from Skippbox Kompose
version: 13.5.0-1
version: 13.5.2
apiVersion: v2
keywords:
- latest
@@ -39,6 +39,8 @@ spec:
value: "{{ .Values.HARP_K8S_HOST_ALIASES }}"
- name: HP_FRP_DISABLE_TLS
value: "true"
- name: HP_SHARED_KEY
value: "{{ .Values.HP_SHARED_KEY }}"
- name: NC_INSTANCE_URL
value: https://{{ .Values.NC_DOMAIN }}
- name: TZ
@@ -128,6 +128,8 @@ spec:
value: elastic
- name: HARP_ENABLED
value: "{{ .Values.HARP_ENABLED }}"
- name: HP_SHARED_KEY
value: "{{ .Values.HP_SHARED_KEY }}"
- name: IMAGINARY_ENABLED
value: "{{ .Values.IMAGINARY_ENABLED }}"
- name: IMAGINARY_HOST
+1
View File
@@ -1,6 +1,7 @@
DATABASE_PASSWORD: # TODO! This needs to be a unique and good password!
EUROOFFICE_SECRET: # TODO! This needs to be a unique and good password!
FULLTEXTSEARCH_PASSWORD: # TODO! This needs to be a unique and good password!
HP_SHARED_KEY: # TODO! This needs to be a unique and good password!
IMAGINARY_SECRET: # TODO! This needs to be a unique and good password!
NC_DOMAIN: yourdomain.com # TODO! Needs to be changed to the domain that you want to use for Nextcloud.
NEXTCLOUD_PASSWORD: # TODO! This is the password of the initially created Nextcloud admin with username admin.