Skip to content

Commit

Permalink
Updated README.md and changes to version in snapshot example
Browse files Browse the repository at this point in the history
  • Loading branch information
nirmalaagash committed Jul 16, 2021
1 parent 18e1b63 commit 01d09b0
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 14 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ Vagrantfile
*.swp

# IntelliJ
.idea/
.idea/

#MacOS system files
*.DS_Store
9 changes: 2 additions & 7 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,9 @@ By default, driver tolerates taint `CriticalAddonsOnly` and has `tolerationSecon
#### Deploy driver
Please see the compatibility matrix above before you deploy the driver

If you want to deploy the stable driver without alpha features:
To deploy the CSI driver:
```sh
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-0.10"
```

If you want to deploy the driver with alpha features:
```sh
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/alpha/?ref=master"
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.1"
```

Verify driver is running:
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/dynamic-provisioning/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example shows how to create a EBS volume and consume it from container dyna

1. Kubernetes 1.13+ (CSI 1.0).

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

## Usage

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: snapshot.storage.k8s.io/v1beta1
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotClass
metadata:
name: csi-aws-vsc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ volumes using the `VolumeSnapshot` custom resources.
snapshot in us-west-2b availability zone.

```
apiVersion: snapshot.storage.k8s.io/v1beta1
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotContent
metadata:
name: static-snapshot-content
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: snapshot.storage.k8s.io/v1beta1
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotContent
metadata:
name: static-snapshot-content
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: snapshot.storage.k8s.io/v1beta1
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshot
metadata:
name: static-snapshot-demo
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/snapshot/specs/snapshot/snapshot.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: snapshot.storage.k8s.io/v1beta1
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshot
metadata:
name: ebs-volume-snapshot
Expand Down

0 comments on commit 01d09b0

Please sign in to comment.