You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| "type" | pd-ssd | pd-standard | pd-standard | Type allows you to choose between standard Persistent Disks or Solid State Drive Persistent Disks |
36
+
| "replication-type" | none | regional-pd | none | Replication type allows you to choose between standard zonal Persistent Disks or highly available Regional Persistent Disks |
37
+
38
+
### Future Features
39
+
See Github [Issues](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/issues)
40
+
41
+
### Topology
42
+
This driver supports only one topology key:
43
+
`com.google.topology/zone`
44
+
that represents availability by zone.
45
+
46
+
## Kubernetes User Guide
47
+
### Install Driver
48
+
1.[One-time per project] Create GCP service account for the CSI driver and set required roles
49
+
```
50
+
PROJECT=your-project-here # GCP project
51
+
GCE_PD_SA_NAME=my-gce-pd-csi-sa # Name of the service account to create
52
+
GCE_PD_SA_DIR=/my/safe/credentials/directory # Directory to save the service account key
53
+
./deploy/setup-project.sh
54
+
```
55
+
56
+
2. Deploy driver to Kubernetes Cluster
57
+
```
58
+
GCE_PD_SA_DIR=/my/safe/credentials/directory # Directory to get the service account key
59
+
GCE_PD_DRIVER_VERSION=stable # Driver version to deploy
0 commit comments