diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index cfe7c16c..7e87c722 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 3.3.3 +version: 3.3.4 appVersion: 25.0.1 description: A file sharing server that puts the control and security of your own data back into your hands. keywords: diff --git a/charts/nextcloud/templates/deployment.yaml b/charts/nextcloud/templates/deployment.yaml index f5d6b65a..3b968046 100644 --- a/charts/nextcloud/templates/deployment.yaml +++ b/charts/nextcloud/templates/deployment.yaml @@ -83,7 +83,7 @@ spec: livenessProbe: httpGet: path: /status.php - port: http + port: {{ .Values.nextcloud.containerPort | default "http" }} httpHeaders: - name: Host value: {{ .Values.nextcloud.host | quote }} @@ -97,7 +97,7 @@ spec: readinessProbe: httpGet: path: /status.php - port: http + port: {{ .Values.nextcloud.containerPort | default "http" }} httpHeaders: - name: Host value: {{ .Values.nextcloud.host | quote }} @@ -111,7 +111,7 @@ spec: startupProbe: httpGet: path: /status.php - port: http + port: {{ .Values.nextcloud.containerPort | default "http" }} httpHeaders: - name: Host value: {{ .Values.nextcloud.host | quote }}