Skip to content

Commit

Permalink
feat(shared, besu): added support for azure storage class in shared a…
Browse files Browse the repository at this point in the history
…nd besu (#2353)

* feat(shared, besu): added support for azure storage class in shared and besu
---------

Signed-off-by: Alanna DeMuro <[email protected]>
  • Loading branch information
alanna-demuro committed Aug 25, 2023
1 parent b93d1f1 commit e945d3e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ dlt_templates:
aws-storageclass: storageclass.tpl
minikube-storageclass: storageclass.tpl
gcp-storageclass: storageclass.tpl
azure-storageclass: storageclass.tpl
2 changes: 2 additions & 0 deletions platforms/shared/charts/storage_class/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ provisioner: ebs.csi.aws.com
provisioner: gce.csi.google.com
{{- else if eq .Values.cloud_provider "minikube" }}
provisioner: k8s.io/minikube-hostpath
{{- else if eq .Values.cloud_provider "azure" }}
provisioner: disk.csi.azure.com
{{- end -}}
{{- end -}}
4 changes: 4 additions & 0 deletions platforms/shared/charts/storage_class/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ parameters:
replicationtype: none
minikube:
encrypted: "true"
azure:
skuName: StandardSSD_LRS
kind: Managed


# The policy for deleting PersistentVolumes that are provisioned by this StorageClass. Supported values are: Delete or Retain.
# The `Delete` value specifies that PersistentVolumes that are provisioned by this StorageClass will be deleted when they are no longer in use.
Expand Down

0 comments on commit e945d3e

Please sign in to comment.