strong-carpet-69168
04/25/2023, 4:35 PMprovider: s3
providerConfig:
s3:
disableSSL: true
v2Signing: true
endpoint: <http://XXXXXXXXXX:9000>
authType: accesskey
accessKey: XXXXX <<<<-------
secretKey: XXXXXXXXXXXXXXX <<<<---
Of course I cant write it into the config file directly. Is there a straightforward way I dont see here? Like Env Vars?
Thanks in advance!average-finland-92144
04/25/2023, 4:42 PMthankful-minister-83577
thankful-minister-83577
freezing-airport-6809
strong-carpet-69168
04/26/2023, 9:07 AMhelm install flyte-backend \
flyteorg/flyte-binary \
--namespace flyte \
--values flyte/values.yaml
The values.yaml
file contains every configuration detail, unfortunately the S3 Keys as plain text.
Hi @thankful-minister-83577
My values.yaml
looks very similar, its not exactly the sandbox, but its basically the same.
Imagine I do a git push
into our repo everyone could see the secrets as plain text, big No No!. So I need a way to set some values during runtime.
My first idea were environment variables (did not work)
accessKey: ${S3_ACCESS_KEY}
My second approach was a helm interpolation
accessKey: {{ .Values.accessKey }}
Unfortunately this also did not work because the values.yaml is not interpolatable.
Hi @freezing-airport-6809
Is that possible to inject k8s secrets in the values.yaml?strong-carpet-69168
04/27/2023, 6:42 PMfreezing-airport-6809
freezing-airport-6809
freezing-airport-6809
thankful-minister-83577
strong-carpet-69168
05/03/2023, 9:05 AMhelm repo list
(flyteorg https://flyteorg.github.io/flyte)
Which of the following charts (folders) was installed here?
https://github.com/flyteorg/flyte/tree/master/chartsaverage-finland-92144
05/03/2023, 10:48 AMhelm list --namespace <your-namespace>
freezing-boots-56761
freezing-boots-56761
values.yaml
file, and use extra volume / extra volume mount to mount overrides from a pre-created secret object. will also need another secret object that will need to be propagated to dataplane namespaces, and added to task pods' envFrom
in the primary container spec via a pod template likely.freezing-boots-56761
average-finland-92144
05/04/2023, 10:41 AM