Skip to content

Commit

Permalink
fix: storageclass default not premium
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Jul 2, 2021
1 parent 9768d83 commit 02edec9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .values/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
/docker-compose*
/bin/
core.yaml
.sops-creds.env
.secrets
8 changes: 4 additions & 4 deletions values/cloud/pv-azure.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: std
parameters:
kind: Managed
storageaccounttype: {{ . | get "azure.storageType.standard" "StandardSSD_LRS" }}
storageaccounttype: {{ . | get "azure.storageType.standard" "StandardLRS" }}
provisioner: kubernetes.io/azure-disk
allowVolumeExpansion: true
reclaimPolicy: Delete
Expand All @@ -18,7 +18,7 @@
name: std-immediate
parameters:
kind: Managed
storageaccounttype: {{ . | get "azure.storageType.standard" "StandardSSD_LRS" }}
storageaccounttype: {{ . | get "azure.storageType.standard" "StandardLRS" }}
provisioner: kubernetes.io/azure-disk
allowVolumeExpansion: true
reclaimPolicy: Delete
Expand All @@ -31,7 +31,7 @@
name: fast
parameters:
kind: Managed
storageaccounttype: {{ . | get "azure.storageType.fast" "Premium_LRS" }}
storageaccounttype: {{ . | get "azure.storageType.fast" "StandardSSD_LRS" }}
provisioner: kubernetes.io/azure-disk
allowVolumeExpansion: true
reclaimPolicy: Delete
Expand All @@ -44,7 +44,7 @@
name: fast-immediate
parameters:
kind: Managed
storageaccounttype: {{ . | get "azure.storageType.fast" "Premium_LRS" }}
storageaccounttype: {{ . | get "azure.storageType.fast" "StandardSSD_LRS" }}
provisioner: kubernetes.io/azure-disk
allowVolumeExpansion: true
reclaimPolicy: Delete
Expand Down

0 comments on commit 02edec9

Please sign in to comment.