如何在不创建的情况下从目录生成ConfigMap?
如果我使用:
$ kubectl create configmap my-config --from-file=configuration/ -o yaml
apiVersion: v1
data:
...
显示ConfigMap yaml输出,但在当前Kubernetes项目上下文中创建了my-config
。
我想只生成ConfigMap文件,有可能吗?是否有kubectl create
“干”模式?
最好的问候,
斯特凡
答案 0 :(得分:7)
只需添加--dry-run
即可:
$ kubectl create configmap my-config --from-file=configuration/ -o yaml --dry-run
来源:https://kubernetes.io/docs/user-guide/kubectl/kubectl_create_configmap/