Skip to content

Commit c57bc04

Browse files
committed
add auth secret
1 parent a2fb7a2 commit c57bc04

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
apiVersion: v1
2+
kind: Secret
3+
metadata:
4+
name: {{ .Values.auth.secretName }}
5+
data:
6+
AWS_ACCESS_KEY_ID: {{ .Values.auth.accessKeyId | b64enc }}
7+
AWS_SECRET_ACCESS_KEY: {{ .Values.auth.secretAccessKey | b64enc }}

chart/valid8or-plugin-aws/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,7 @@ metricsService:
5151
protocol: TCP
5252
targetPort: https
5353
type: ClusterIP
54-
fullnameOverride: valid8or-plugin-aws
54+
auth:
55+
secretName: aws-creds
56+
accessKeyId: ""
57+
secretAccessKey: ""

hack/extra-values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
fullnameOverride: valid8or-plugin-aws
1+
auth:
2+
secretName: aws-creds
3+
accessKeyId: ""
4+
secretAccessKey: ""

0 commit comments

Comments
 (0)