We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now we have to set env variables on each deploy/daemonSet, a better approch would be to define a configMap and load the Env from this ConfigMap.
From official documentation you can load env from a ConfigMap :
apiVersion: v1 kind: Pod metadata: name: dapi-test-pod spec: containers: - name: test-container image: registry.k8s.io/busybox command: [ "/bin/sh", "-c", "env" ] envFrom: - configMapRef: name: special-config restartPolicy: Never
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What's needed and why?
Right now we have to set env variables on each deploy/daemonSet, a better approch would be to define a configMap and load the Env from this ConfigMap.
Implementations ideas (optional)
From official documentation you can load env from a ConfigMap :
Code of Conduct
The text was updated successfully, but these errors were encountered: