Skip to content

Commit

Permalink
Fixed command typos in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jpflouret authored Feb 28, 2024
1 parent eff6626 commit 50cd49e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,15 @@ The secret should contain the following keys:

You can create the secret using `kubectl`:
```shell
kubectl kubectl create secret generic aws-credentials \
--namespace <namespace>
kubectl create secret generic aws-credentials \
--namespace <namespace> \
--from-literal=AWS_ACCESS_KEY_ID=<access key id> \
--from-literal=AWS_SECRET_ACCESS_KEY=<secret access key> \
--from-literal=AWS_DEFAULT_REGION=<aws region>
```
> [!TIP]
> Add a space in front of the above command to prevent bash from
> storing the command in the history file.

When installing the chart, set `secret.existingSecret` to the name of
the secret created above (`aws-credentials` in this example):
Expand Down

0 comments on commit 50cd49e

Please sign in to comment.