Skip to content

Commit

Permalink
feat(csi): Correct CSI logic
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed Jul 29, 2024
1 parent 77bf0f8 commit a92106d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/drupal/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: drupal
apiVersion: v2
type: application
version: 1.0.0-beta10
version: 1.0.0-beta11
appVersion: 5.2.3
description: Drupal 10 variant of the Web Experience Toolkit (WxT).
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# drupal

![Version: 1.0.0-beta10](https://img.shields.io/badge/Version-1.0.0--beta10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.2.3](https://img.shields.io/badge/AppVersion-5.2.3-informational?style=flat-square)
![Version: 1.0.0-beta11](https://img.shields.io/badge/Version-1.0.0--beta11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.2.3](https://img.shields.io/badge/AppVersion-5.2.3-informational?style=flat-square)

Drupal 10 variant of the Web Experience Toolkit (WxT).

Expand Down
8 changes: 4 additions & 4 deletions charts/drupal/templates/pv/csi-azure-file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ spec:
{{- else if $values.azure.azureFile.storageClass }}
storageClassName: "{{ $values.azure.azureFile.storageClass }}"
{{- end }}
{{- if $values.azure.azureFile.backup.spec }}
{{- toYaml $values.azure.azureFile.backup.spec | nindent 2 }}
{{- if $values.azure.azureFile.$v.spec }}
{{- toYaml $values.azure.azureFile.$v.spec | nindent 2 }}
{{- end }}
{{- if $values.azure.azureFile.backup.mountOptions }}
{{- if $values.azure.azureFile.$v.mountOptions }}
mountOptions:
{{- toYaml $values.azure.azureFile.backup.mountOptions | nindent 4 }}
{{- toYaml $values.azure.azureFile.$v.mountOptions | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
Expand Down

0 comments on commit a92106d

Please sign in to comment.