Kubernetes - Secrets
Given this pod spec snippet mounting a Secret as a volume, what will be the content of the file
/etc/secret-volume/password inside the container?volumes:
- name: secret-volume
secret:
secretName: mysecret
containers:
- name: app
image: nginx
volumeMounts:
- name: secret-volume
mountPath: /etc/secret-volumeAssuming the Secret mysecret contains a key password with value mypassword123.