This repository was archived by the owner on Oct 14, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,12 @@ spec:
64
64
valueFrom :
65
65
secretKeyRef :
66
66
name : {{ .Values.s3.keySecret }}
67
- key : accesskey
67
+ key : {{ .Values.s3.secretAttributeNames. accesskey }}
68
68
- name : S3_SECRET_KEY
69
69
valueFrom :
70
70
secretKeyRef :
71
71
name : {{ .Values.s3.keySecret }}
72
- key : secretkey
72
+ key : {{ .Values.s3.secretAttributeNames. secretkey }}
73
73
{{- end }}
74
74
- name : LURCHER_IMAGE
75
75
value : " {{ .Values.lurcher.image.repository }}:{{ .Values.lurcher.image.tag | default .Chart.Version }}"
Original file line number Diff line number Diff line change 32
32
bucket : " my-bucket"
33
33
# Implicit 443. You probably only need to change this when the system uses a non default port
34
34
port : null
35
- # Name to a k8s secret with 'accesskey' and 'secretkey' as attributes in the same namespace as this release
35
+ # Name to a k8s secret in the same namespace as this release with credentials to the s3 bucket
36
+ # By default this assumes to have 'accesskey' and 'secretkey' as attributes
36
37
# Example creation via kubectl:
37
38
# kubectl create secret generic my-secret --from-literal=accessKey="******" --from-literal=secretKey="******"
38
39
keySecret : my-secret
40
+ # Names to the attributes in the s3 secret
41
+ secretAttributeNames :
42
+ accesskey : accesskey
43
+ secretkey : secretkey
39
44
40
45
#
41
46
# Config for the operator ressource limits
You can’t perform that action at this time.
0 commit comments