diff --git a/README.md b/README.md index 3e1ef29..0448f90 100644 --- a/README.md +++ b/README.md @@ -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 +kubectl create secret generic aws-credentials \ + --namespace \ --from-literal=AWS_ACCESS_KEY_ID= \ --from-literal=AWS_SECRET_ACCESS_KEY= \ --from-literal=AWS_DEFAULT_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):