Answers for "how to pass files and directories to helm charts"

0

how to pass files and directories to helm charts

apiVersion: v1
kind: ConfigMap
metadata:
  name: conf
data:
{{ (.Files.Glob "foo/*").AsConfig | indent 2 }}
---
apiVersion: v1
kind: Secret
metadata:
  name: very-secret
type: Opaque
data:
{{ (.Files.Glob "bar/*").AsSecrets | indent 2 }}
Posted by: Guest on November-30-2020

Code answers related to "how to pass files and directories to helm charts"

Browse Popular Code Answers by Language