首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

kubernetes资源对象ConfigMap学习(一)

2024-12-16 来源:化拓教育网

生产环境中很多应用程序的配置可能需要通过配置文件,命令行参数和环境变量的组合配置来完成。这些配置应该从image中解耦,以此来保持容器化应用程序的可移植性。在K8S1.2后引入ConfigMap来处理这种类型的配置数据。ConfigMap API资源提供了将配置数据注入容器的方式,同时保证该机制对容器来说是透明的。ConfigMap可以被用来保存单个属性,也可以用来保存整个配置文件或者JSON二进制对象。ConfigMap API资源存储键/值对配置数据,这些数据可以在pods里使用。

前提条件:已安装kubernetes集群

系统安装好后,默认可以查询到以下configmap

注:我这里使用的是flannel网络,可能与你的存在差异。

kubectl describe configmap kube-flannel-cfg --namespace kube-system

上图Data字段

ConfigMap也是kubernetes的一种资源对象,当然创建ConfigMap也有两种方式:

(1)通过kubectl create configmap命令

(2)通过yaml文件

1、首先来看下通过命令行创建configmap

kubectl命令提供了可以从目录、文件或者字面值三种方式创建configmap

格式:

kubectl create configmap NAME [--from-file=[key=]source] [--from-literal=key1=value1][--dry-run] [options]

具体可以通过kubectl create configmap -h查询

接下来,分别说明具体的用法:

首先,在configmap目录下创建test1.txt、test2.txt以及env.txt文件,内容如下:

--from-file参数使用:

格式:kubectl create configmap config-name --from-file=[key-name]=directory_path或者file-path

kubectl create configmap my-config --from-file=/root/practice/configmap

结果就是将该目录下的文件名作为key值,文件内容作为value值,存储到my-config中。

--from-file跟具体的文件,并且--from-file可以有多个。

kubectl create configmap my-config --from-file=/root/practice/configmap/test1.txt --from-file=/root/practice/configmap/test2.txt

如果想自己指定key的值,可以这样:

kubectl create configmap my-config --from-file=test1=/root/practice/configmap/test1.txt--from-file=/root/practice/configmap/test2.txt

--from-env-file参数使用:

格式:kubectl create configmap config-name --from-env-file=env-file-path

kubectl create configmap my-env-config --from-env-file=/root/practice/configmap/env.txt

--from-env-file只能跟文件,不能是目录,并且文件里key/value有格式的要求,会做参数的校验。我们上面把env.1写成了env,1,因此报错了。

这一次成功了,但是只有4个键值对,env.4是空值,因为我们没定义value值,env.5不存在,因为我们使用#注释掉了。

--from-literal参数使用:

格式:kubectl create configmap config-name --from-literal=key-name=value

kubectl create configmap my-config1 --from-literal=key1=value1 --from-literal=key2=value2

2、通过yaml文件创建configmap

我们可以看下在创建flannel网络时使用的yaml文件(仅截取了ConfigMap的定义部分)

我们一开始查询到的kube-flannel-cfg就是用过上述定义的资源对象创建的。

下面写个简单的例子,说明下,创建test-cfg.yaml文件如下:

执行kubectl apply -f test-cfg.yaml,查询configmap:test-cfg的具体信息

至此,我们学习了configmap的创建方法,接下来就要学习怎么使用configmap了。也就是说房子建好了,怎么用的问题了。

显示全文