Skip to content

Commit

Permalink
feat(csi): Ability to set custom SKU Name
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed Jul 29, 2024
1 parent c6e3cee commit 77bf0f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 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-beta9
version: 1.0.0-beta10
appVersion: 5.2.3
description: Drupal 10 variant of the Web Experience Toolkit (WxT).
keywords:
Expand Down
3 changes: 2 additions & 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-beta8](https://img.shields.io/badge/Version-1.0.0--beta8-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-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)

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

Expand Down Expand Up @@ -287,6 +287,7 @@ helm install --name drupal -f values-<override>.yaml
| azure.azureFile.protocol | string | `"smb"` | |
| azure.azureFile.public.spec | object | `{}` | |
| azure.azureFile.size | string | `"256Gi"` | |
| azure.azureFile.skuName | string | `"Standard_LRS"` | |
| azure.azureFile.tmp.spec | object | `{}` | |

## Shared Disk
Expand Down
4 changes: 2 additions & 2 deletions charts/drupal/templates/storageclass/csi-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ provisioner: file.csi.azure.com
provisioner: kubernetes.io/azure-file
{{- end }}
parameters:
skuName: Premium_LRS
skuName: {{ .Values.azure.azureFile.skuName }}
protocol: {{ .Values.azure.azureFile.protocol }}
{{- end }}
{{- if .Values.azure.sharedDisk.enabled -}}
Expand All @@ -25,7 +25,7 @@ provisioner: disk.csi.azure.com
provisioner: kubernetes.io/azure-disk
{{- end }}
parameters:
skuname: Premium_LRS
skuname: {{ .Values.azure.azureFile.skuName }}
cachingMode: None
maxShares: "{{ .Values.azure.sharedDisk.maxShares }}"
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions charts/drupal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ azure:
size: 256Gi
# storageClass: "-"

skuName: Standard_LRS
protocol: smb

public:
Expand Down

0 comments on commit 77bf0f8

Please sign in to comment.