Skip to content

Commit

Permalink
fix: manually extract keys
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Butler <[email protected]>
  • Loading branch information
butler54 committed May 16, 2024
1 parent efc4908 commit b6f9c06
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions charts/all/test-dsp/templates/push-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ spec:
data:
- conversionStrategy: None # Also supports the ReverseUnicode strategy
match:
secretKey: data # Source Kubernetes secret key to be pushed
secretKey: AWS_ACCESS_KEY_ID # Source Kubernetes secret key to be pushed
remoteRef:
remoteKey: "secret/data/global/{{ .Values.dsp.name }}-aws" # Remote reference (where the secret is going to be pushed)
remoteKey: "secret/data/global/{{ .Values.dsp.name }}-aws-access-key" # Remote reference (where the secret is going to be pushed)
- conversionStrategy: None # Also supports the ReverseUnicode strategy
match:
secretKey: AWS_SECRET_ACCESS_KEY # Source Kubernetes secret key to be pushed
remoteRef:
remoteKey: "secret/data/global/{{ .Values.dsp.name }}-aws-secret-access-key" # Remote reference (where the secret is going to be pushed

0 comments on commit b6f9c06

Please sign in to comment.