题目要求
在 test 命名空间,创建一个名为 mysecret 的密钥,其值 username 为 devuser 和 password为A!B*d$zDsb= 在 test 命名空间,创建一个 pod,镜像使用 nginx:1.16 ,名字为 mypod ,将秘密 mysecret 挂载到路径 /etc/foo 上的卷中
参考
https://kubernetes.io/zh-cn/docs/tasks/configmap-secret/managing-secret-using-kubectl/
https://kubernetes.io/zh-cn/docs/concepts/configuration/secret/#using-secrets-as-files-from-a-pod
解答
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| kubectl create ns **test
echo -n 'devuser' > ./username.txt echo -n 'A!B*d$zDsb=' > ./password.txt
kubectl -n test create secret generic db-user-pass \\ --from-file=username=./username.txt \\ --from-file=password=./password.txt
cat 27.secret-pod-test.yaml apiVersion: v1 kind: Pod metadata: name: mypod spec: containers: - name: mypod image: nginx:1.16 volumeMounts: - name: foo mountPath: "/etc/foo" readOnly: true volumes: - name: foo secret: secretName: mysecret optional: true
kubectl -n test apply -f 27.secret-pod-test.yaml**
|