I am trying to deploy my app to Kubernetes running in Google Container Engine.
The app can be found at: https://github.com/Industrial/docker-znc.>
You can get the yaml files of the resources using this command
kubectl -n get -o yaml
To get the secret into your pod,
use something like this
env - valueFrom secretKeyRef: name: secret_name key: key_name
or
envFrom - secretRef: name: secret_name