Skip to content

Commit fde8c01

Browse files
authored
Merge pull request #976 from nirmalaagash/master
Updated README.md and changed the version in snapshot example
2 parents 18e1b63 + 01d09b0 commit fde8c01

File tree

8 files changed

+12
-14
lines changed

8 files changed

+12
-14
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ Vagrantfile
2020
*.swp
2121

2222
# IntelliJ
23-
.idea/
23+
.idea/
24+
25+
#MacOS system files
26+
*.DS_Store

docs/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,9 @@ By default, driver tolerates taint `CriticalAddonsOnly` and has `tolerationSecon
147147
#### Deploy driver
148148
Please see the compatibility matrix above before you deploy the driver
149149

150-
If you want to deploy the stable driver without alpha features:
150+
To deploy the CSI driver:
151151
```sh
152-
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-0.10"
153-
```
154-
155-
If you want to deploy the driver with alpha features:
156-
```sh
157-
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/alpha/?ref=master"
152+
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.1"
158153
```
159154

160155
Verify driver is running:

examples/kubernetes/dynamic-provisioning/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This example shows how to create a EBS volume and consume it from container dyna
55

66
1. Kubernetes 1.13+ (CSI 1.0).
77

8-
2. The [aws-ebs-csi-driver](https://github.com/kubernetes-sigs/aws-ebs-csi-driver) is installed with `--set enableVolumeScheduling=true`.
8+
2. The [aws-ebs-csi-driver](https://github.com/kubernetes-sigs/aws-ebs-csi-driver) is installed.
99

1010
## Usage
1111

examples/kubernetes/snapshot/specs/classes/snapshotclass.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: snapshot.storage.k8s.io/v1beta1
1+
apiVersion: snapshot.storage.k8s.io/v1
22
kind: VolumeSnapshotClass
33
metadata:
44
name: csi-aws-vsc

examples/kubernetes/snapshot/specs/snapshot-import/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ volumes using the `VolumeSnapshot` custom resources.
2323
snapshot in us-west-2b availability zone.
2424

2525
```
26-
apiVersion: snapshot.storage.k8s.io/v1beta1
26+
apiVersion: snapshot.storage.k8s.io/v1
2727
kind: VolumeSnapshotContent
2828
metadata:
2929
name: static-snapshot-content

examples/kubernetes/snapshot/specs/snapshot-import/static-snapshot/volume-snapshot-content.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: snapshot.storage.k8s.io/v1beta1
1+
apiVersion: snapshot.storage.k8s.io/v1
22
kind: VolumeSnapshotContent
33
metadata:
44
name: static-snapshot-content

examples/kubernetes/snapshot/specs/snapshot-import/static-snapshot/volume-snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: snapshot.storage.k8s.io/v1beta1
1+
apiVersion: snapshot.storage.k8s.io/v1
22
kind: VolumeSnapshot
33
metadata:
44
name: static-snapshot-demo

examples/kubernetes/snapshot/specs/snapshot/snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: snapshot.storage.k8s.io/v1beta1
1+
apiVersion: snapshot.storage.k8s.io/v1
22
kind: VolumeSnapshot
33
metadata:
44
name: ebs-volume-snapshot

0 commit comments

Comments
 (0)