From bbaa3eb290d3c2db8f2c3069f35f93749c4382cd Mon Sep 17 00:00:00 2001 From: Pier-Olivier Thibault <23230+pier-oliviert@users.noreply.github.com> Date: Thu, 27 Jun 2024 12:14:05 -0400 Subject: [PATCH] Attempts at making the docs more clear with secret volume The secret includes keys/value pair and a secret, when mounted as a volume, will generate a file for each of the pair where the name of the file is the key and the content of the file, the value. This hopefully makes the doc clear on how to configured credentials. --- docs/tutorials/aws.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/aws.md b/docs/tutorials/aws.md index f32e4747e..c7931ad26 100644 --- a/docs/tutorials/aws.md +++ b/docs/tutorials/aws.md @@ -494,11 +494,11 @@ provider: name: aws env: - name: AWS_SHARED_CREDENTIALS_FILE - value: /etc/aws/credentials + value: /etc/aws/credentials/my_credentials extraVolumes: - name: aws-credentials secret: - secretName: external-dns + secretName: external-dns # In this example, the secret will have the data stored in a key named `my_credentials` extraVolumeMounts: - name: aws-credentials mountPath: /etc/aws/credentials