Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,20 @@ AWS offers two services to manage secrets and parameters conveniently in your co

### Installing the AWS Provider and Config Provider (ASCP)

#### Option 1: Using helm
#### Option 1: Using eksctl

```shell
eksctl create addon --name aws-secrets-store-csi-driver-provider --cluster <your_cluster>
```

#### Option 2: Using helm

```shell
helm repo add aws-secrets-manager https://aws.github.io/secrets-store-csi-driver-provider-aws
helm install -n kube-system secrets-provider-aws aws-secrets-manager/secrets-store-csi-driver-provider-aws
```

#### Option 2: Using kubectl
#### Option 3: Using kubectl

```shell
kubectl apply -f https://raw.githubusercontent.com/aws/secrets-store-csi-driver-provider-aws/main/deployment/aws-provider-installer.yaml
Expand Down
Loading