ConfigMap是一种比较特殊的存储卷,它的主要作用是用来存储配置信息的。
cat >test.yaml < # 创建configmap和pod kubectl create -f test.yaml # 查看configmap详情 kubectl describe cm configmap -n dev '''Name: configmap Namespace: dev Labels:Annotations: Data ==== hello: ---- world info: ---- username:admin password:123456 Events: ''' #进入容器 kubectl exec -it pod-configmap -n dev /bin/sh cd /configmap/config/ && ls #hello info cat hello #world# cat info #username:admin password:123456# '''可以看到映射已经成功,每个configmap都映射成了一个目录 key--->文件 value---->文件中的内容 此时如果更新configmap的内容, 容器中的值也会动态更新''' 欢迎分享,转载请注明来源:内存溢出
评论列表(0条)