Skip to content

Commit 4cb7445

Browse files
authored
fix: after #465 (remove before <?php, indent of extraVolumes and podLabels) (#476)
* fix: after #465 (remove before <?php and correct indent of extraVolumes) Signed-off-by: WrenIX <dev.github@wrenix.eu> * fix: podLabel inside of with Signed-off-by: WrenIX <133280015+wrenix@users.noreply.github.com> --------- Signed-off-by: WrenIX <dev.github@wrenix.eu> Signed-off-by: WrenIX <133280015+wrenix@users.noreply.github.com>
1 parent a303a5f commit 4cb7445

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

charts/nextcloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: nextcloud
3-
version: 4.5.1
3+
version: 4.5.2
44
appVersion: 27.1.3
55
description: A file sharing server that puts the control and security of your own data back into your hands.
66
keywords:

charts/nextcloud/templates/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
data:
1212
{{- range $key, $value := .Values.nextcloud.configs }}
1313
{{ $key }}: |-
14-
{{ $value | nindent 4 }}
14+
{{- $value | nindent 4 }}
1515
{{- end }}
1616
{{- if .Values.nextcloud.defaultConfigs }}
1717
{{- if index .Values.nextcloud.defaultConfigs ".htaccess" }}

charts/nextcloud/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
{{ template "nextcloud.redis.fullname" . }}-client: "true"
3636
{{- end }}
3737
{{- with .Values.podLabels }}
38-
{{- toYaml .Values.podLabels | nindent 8 }}
38+
{{- toYaml . | nindent 8 }}
3939
{{- end }}
4040
annotations:
4141
nextcloud-config-hash: {{ print (toJson .Values.nextcloud.defaultConfigs) "-" (toJson .Values.nextcloud.configs) | sha256sum }}
@@ -350,7 +350,7 @@ spec:
350350
name: {{ template "nextcloud.fullname" . }}-nginxconfig
351351
{{- end }}
352352
{{- with .Values.nextcloud.extraVolumes }}
353-
{{- toYaml . | nindent 6 }}
353+
{{- toYaml . | nindent 8 }}
354354
{{- end }}
355355
securityContext:
356356
{{- with .Values.securityContext }}

0 commit comments

Comments
 (0)