We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf80994 + 7df5f0b commit b3a07d8Copy full SHA for b3a07d8
modules/dynamic-provisioning-gce-definition.adoc
@@ -9,13 +9,18 @@
9
.gce-pd-storageclass.yaml
10
[source,yaml]
11
----
12
-kind: StorageClass
13
apiVersion: storage.k8s.io/v1
+kind: StorageClass
14
metadata:
15
- name: slow
+ name: standard
16
+ annotations:
17
+ storageclass.kubernetes.io/is-default-class: "true"
18
provisioner: kubernetes.io/gce-pd
19
parameters:
- type: pd-standard <1>
20
+ type: pd-standard <1>
21
replication-type: none
22
+volumeBindingMode: WaitForFirstConsumer
23
+allowVolumeExpansion: true
24
+reclaimPolicy: Delete
25
-<1> Select either `pd-standard` or `pd-ssd`. The default is `pd-ssd`.
26
+<1> Select either `pd-standard` or `pd-ssd`. The default is `pd-standard`.
0 commit comments