Skip to content

Commit

Permalink
fix: after #465 (remove before <?php, indent of extraVolumes and podL…
Browse files Browse the repository at this point in the history
…abels) (#476)

* fix: after #465 (remove before <?php and correct indent of extraVolumes)

Signed-off-by: WrenIX <[email protected]>

* fix: podLabel inside of with

Signed-off-by: WrenIX <[email protected]>

---------

Signed-off-by: WrenIX <[email protected]>
Signed-off-by: WrenIX <[email protected]>
  • Loading branch information
wrenix authored Nov 20, 2023
1 parent a303a5f commit 4cb7445
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: nextcloud
version: 4.5.1
version: 4.5.2
appVersion: 27.1.3
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/nextcloud/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
data:
{{- range $key, $value := .Values.nextcloud.configs }}
{{ $key }}: |-
{{ $value | nindent 4 }}
{{- $value | nindent 4 }}
{{- end }}
{{- if .Values.nextcloud.defaultConfigs }}
{{- if index .Values.nextcloud.defaultConfigs ".htaccess" }}
Expand Down
4 changes: 2 additions & 2 deletions charts/nextcloud/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
{{ template "nextcloud.redis.fullname" . }}-client: "true"
{{- end }}
{{- with .Values.podLabels }}
{{- toYaml .Values.podLabels | nindent 8 }}
{{- toYaml . | nindent 8 }}
{{- end }}
annotations:
nextcloud-config-hash: {{ print (toJson .Values.nextcloud.defaultConfigs) "-" (toJson .Values.nextcloud.configs) | sha256sum }}
Expand Down Expand Up @@ -350,7 +350,7 @@ spec:
name: {{ template "nextcloud.fullname" . }}-nginxconfig
{{- end }}
{{- with .Values.nextcloud.extraVolumes }}
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 8 }}
{{- end }}
securityContext:
{{- with .Values.securityContext }}
Expand Down

0 comments on commit 4cb7445

Please sign in to comment.