Skip to content

Commit c419540

Browse files
authored
Merge pull request #152 from msau42/update-stable
Update stable images to official releases
2 parents 8fb7fe1 + 898c260 commit c419540

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
WARNING: The BETA driver is NOT compatible with Kubernetes versions <1.12.
1+
WARNING: This driver is alpha and may not be compatible between driver versions
2+
or Kubernetes versions
23

34
DISCLAIMER: This is not an officially supported Google product
45

@@ -14,8 +15,8 @@ Specification compliant driver used by Container Orchestrators to manage the
1415
lifecycle of Google Compute Engine Persistent Disks.
1516

1617
## Project Status
17-
Status: Beta
18-
Latest image: `gcr.io/google-containers/volume-csi/gcp-compute-persistent-disk-csi-driver:v0.2.0.beta`
18+
Status: Alpha
19+
Latest stable image: `gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.2.0-gke.0`
1920

2021
### CSI Compatibility
2122
This plugin is compatible with CSI versions [v0.2.0](https://github.com/container-storage-interface/spec/blob/v0.2.0/spec.md) and [v0.3.0](https://github.com/container-storage-interface/spec/blob/v0.3.0/spec.md)
@@ -24,7 +25,7 @@ This plugin is compatible with CSI versions [v0.2.0](https://github.com/containe
2425
| GCE PD CSI Driver\Kubernetes Version | 1.10.5 - 1.11 | 1.12+ |
2526
|--------------------------------------|---------------|------|
2627
| v0.1.0.alpha | yes | no |
27-
| v0.2.0.beta (stable) | no | yes |
28+
| v0.2.0 (alpha) | no | yes |
2829
| dev | no | yes |
2930

3031
### Known Issues
@@ -162,4 +163,4 @@ Use [dep](https://github.com/golang/dep)
162163
$ dep ensure
163164
```
164165

165-
To modify dependencies or versions change `./Gopkg.toml`
166+
To modify dependencies or versions change `./Gopkg.toml`

deploy/kubernetes/base/controller.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
serviceAccount: csi-controller-sa
1717
containers:
1818
- name: csi-provisioner
19-
image: quay.io/k8scsi/csi-provisioner:v0.4.1
19+
image: gcr.io/gke-release/csi-provisioner:v0.4.1-gke.0
2020
args:
2121
- "--v=5"
2222
- "--provisioner=com.google.csi.gcepd"
@@ -28,7 +28,7 @@ spec:
2828
- name: socket-dir
2929
mountPath: /csi
3030
- name: csi-attacher
31-
image: quay.io/k8scsi/csi-attacher:v0.4.1
31+
image: gcr.io/gke-release/csi-attacher:v0.4.1-gke.0
3232
args:
3333
- "--v=5"
3434
- "--csi-address=$(ADDRESS)"
@@ -39,7 +39,7 @@ spec:
3939
- name: socket-dir
4040
mountPath: /csi
4141
- name: gce-pd-driver
42-
image: gcr.io/google-containers/volume-csi/gcp-compute-persistent-disk-csi-driver:v0.2.0.beta
42+
image: gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.2.0-gke.0
4343
args:
4444
- "--v=5"
4545
- "--endpoint=$(CSI_ENDPOINT)"

deploy/kubernetes/base/node.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccount: csi-node-sa
1616
containers:
1717
- name: csi-driver-registrar
18-
image: quay.io/k8scsi/driver-registrar:v0.4.1
18+
image: gcr.io/gke-release/csi-driver-registrar:v0.4.1-gke.0
1919
args:
2020
- "--v=5"
2121
- "--csi-address=$(ADDRESS)"
@@ -39,7 +39,7 @@ spec:
3939
- name: gce-pd-driver
4040
securityContext:
4141
privileged: true
42-
image: gcr.io/google-containers/volume-csi/gcp-compute-persistent-disk-csi-driver:v0.2.0.beta
42+
image: gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.2.0-gke.0
4343
args:
4444
- "--v=5"
4545
- "--endpoint=$(CSI_ENDPOINT)"

0 commit comments

Comments
 (0)