Skip to content

Commit

Permalink
update 11/28/24 16:10:49
Browse files Browse the repository at this point in the history
  • Loading branch information
Qovery committed Nov 28, 2024
1 parent 091b5da commit e0d062c
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: gcp-pd-extreme
annotations:
{{- if eq "gcp-pd-extreme" .Values.defaultStorageClassName }}
"storageclass.kubernetes.io/is-default-class": "true"
{{- end }}
labels:
qovery-type: "ssd"
provisioner: pd.csi.storage.gke.io
Expand All @@ -14,6 +18,10 @@ kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: gcp-pd-ssd
annotations:
{{- if eq "gcp-pd-ssd" .Values.defaultStorageClassName }}
"storageclass.kubernetes.io/is-default-class": "true"
{{- end }}
labels:
qovery-type: "ssd"
provisioner: pd.csi.storage.gke.io
Expand Down Expand Up @@ -42,6 +50,10 @@ kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: gcp-pd-standard
annotations:
{{- if eq "gcp-pd-standard" .Values.defaultStorageClassName }}
"storageclass.kubernetes.io/is-default-class": "true"
{{- end }}
labels:
qovery-type: "hdd"
provisioner: pd.csi.storage.gke.io
Expand Down

0 comments on commit e0d062c

Please sign in to comment.