我正在尝试从文件中创建配置映射yml文件:
kubectl create configmap my-config --from-file=my-file.json -o yaml --dry-run
我甚至尝试使用发电机:
kubectl create configmap my-config --from-file=my-file.json --generator="configmap/v1" -o yaml --dry-run
但输出不包含apiVersion
/ kind
,只包含data
/ metadata
。
答案 0 :(得分:0)
通过安装kubectl v1.9.2而不是旧版本来解决。