kubectl 命令详解(十七):create configmap
Posted youzhouliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kubectl 命令详解(十七):create configmap相关的知识,希望对你有一定的参考价值。
一、命令作用
根据配置文件、目录或指定的literal-value创建configmap 。
configmap 用来保存一个或多个 key/value 信息。
当基于配置文件创建 configmap 时,key 将默认为文件的基础名称,value 默认为文件文本内容。如果基本名称的 key 无效,则可以指定另一个key。
当基于目录创建 configmap 时,key还是文件的基础名称,目录中每个配置文件名都被设置为key,文件内容设置为 value。
二、命令语法
configmap NAME [--from-file=[key=]source] [--from-literal=key1=value1] [--dry-run]
三、使用示例
对于以下示例中,安装了 k8s 的情形下,若出现如下报错:
error: the server doesn't have a resource type "xxxx"
则需要在 kuebctl 命令前面加上 sudo 命令。
根据文件创建一个名为exp-config的configmap:
kubectl create configmap exp-config --from-file=path/to/bar
使用指定的keys创建一个名为exp-config的configmap:
kubectl create configmap exp-config --from-file=key1=/path/to/bar/file1.txt --from-file=key2=/path/to/bar/file2.txt
使用key1 = config1和key2 = config2创建一个名为exp-config的configmap:
kubectl create configmap exp-config --from-literal=key1=config1 --from-literal=key2=config2
从文件中的key = value对创建一个名为exp-config的configmap:
kubectl create configmap exp-config --from-file=path/to/bar
从env文件创建一个名为exp-config的configmap:
kubectl create configmap exp-config --from-env-file=path/to/bar.env
四、更多使用 --help
以上是关于kubectl 命令详解(十七):create configmap的主要内容,如果未能解决你的问题,请参考以下文章
kubectl 命令详解(二十三):create rolebinding
kubectl 命令详解(十六):create clusterrolebinding