共计 4122 个字符,预计需要花费 11 分钟才能阅读完成。
本篇文章给大家分享的是有关如何理解 kubernetes 的配置中心 configmap,丸趣 TV 小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着丸趣 TV 小编一起来看看吧。
在企业中,一般都有 2 - 4 种环境,开发,测试,交付,生产这四种。这几种环境的配置也有所变化,我们在部署的时候通常不能一个配置文件部署四个环境。不通用。特别是容器化环境。
在容器化应用中,每个环境都要独立的打一个镜像再给镜像一个特有的 tag,这很麻烦,这就要用到 k8s 原生的配置中心 configMap 就是用解决这个问题的。下面看示例。
使用 configMap 部署应用。
这里使用 nginx 来做示例,简单粗暴。
默认的 nginx 数据目录是在:/usr/share/nginx/html 目录,下面我写一个配置指定端口和数据目录
1、先将配置文件加载到 configMap 中
编写 nginx 配置
[root@server yaml]# vim nginx.conf
server {
listen 8081; ## 端口为 8081
server_name _;
root /html; ## 改数据目录为 /html
location / { }
}
将上面写的 nginx.conf 加载到 configMap 中
创建 configMap 有三个方法
1) 单个 key
命令格式:
例:kubectl create configmap special-config –from-literal=special.how=very –from-literal=special.type=charm
查看:kubectl get configmaps special-config -o yaml
2)基于目录,将目录下的所有文件加载到 configMap 中
命令格式:
例:kubectl create configmap tomcat-conf –from-file=configmap/conf
查看:kubectl get configmaps tomcat-conf -o yaml
3)基于单个 file
命令格式:
例:kubectl create configmap game-conf –from-file=configmap/conf/game.properties
查看:kubectl get configmaps tomcat-conf -o yaml
注意事项:
使用 configmap 的 pod 必须要和 configmap 配置在同一个 namespaces,否则识别不了。在创建 configmap 时在后面加上 -n namespaces 名称
例:kubectl create configmap tomcat-conf –from-file=configmap/conf -n tomcat
这里使用第 3 种:基于单个 file 的方法,其它方法也很简单。
格式:
命令 动作 模块 自定义名称 加载的文件
kubectl create configmap nginx-config –from-file=./nginx.conf
[root@server yaml]# kubectl create configmap nginx-config --from-file=./nginx.conf
configmap/nginx-config created ## 提示创建成功
[root@server yaml]#
[root@server yaml]# kubectl get configmaps ## 查看创建的 nginx-config 配置是否成功
NAME DATA AGE
nginx-config 1 5s
验证 configMap 中的 nginx-config 配置是否和先前 vi 的 nginx.conf 一样
[root@server yaml]# kubectl get configmaps/nginx-config -o yaml
apiVersion: v1
data:
nginx.conf: |+ ## 这一段就是内容,nginx.conf 是该文件的键
server {
listen 8081;
server_name _;
root /html;
location / { }
}
kind: ConfigMap
metadata:
creationTimestamp: 2019-01-31T09:20:08Z
name: nginx-config
namespace: default
resourceVersion: 416047
selfLink: /api/v1/namespaces/default/configmaps/nginx-config
uid: 67199b66-2539-11e9-821c-000c2963b9a7
[root@server yaml]#
可以看到 data: 下面的 nginx.conf 里面的内容和我们上面 vi 的内容一致
接下来在部署应用的时候使用该配置
编写部署应用的 yaml 文件
[root@server yaml]# vim nginx.yaml
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: my-nginx
spec:
replicas: 1
template:
metadata:
labels:
app: my-nginx
spec:
containers:
- name: my-nginx
image: nginx:1.9
ports:
- containerPort: 8081
volumeMounts: -- 就是这一段使用 configMap 配置
- mountPath: /etc/nginx/conf.d -- 将配置文件挂载到哪里
name: config
- mountPath: /html -- 指定数据目录
name: data
volumes:
- name: data -- 指定数据目录创建
emptyDir: {}
- name: config -- 指定 config 使用 configMap
configMap:
name: nginx-config -- 指定使用 configMap 中的 nginx-config 配置
items: -- 注:也可不指定 items,那默认是 nginx-config 里的所有值都挂载
- key: nginx.conf -- 使用 nginx-config 配置的 nginx.conf 键里的内容
path: nginx.conf
apiVersion: v1
kind: Service
metadata:
name: nginx-svc
spec:
type: NodePort
selector:
app: my-nginx
ports:
- protocol: TCP
port: 8081
targetPort: 8081
nodePort: 28081
部署应用
[root@server yaml]# kubectl create -f nginx.yaml
deployment.extensions/my-nginx created
service/nginx-svc created
[root@server yaml]#
[root@server yaml]#
[root@server yaml]# kubectl get pod
NAME READY STATUS RESTARTS AGE
my-nginx-55fd7587b7-7fscq 1/1 Running 0 9s
[root@server yaml]#
[root@server yaml]# kubectl get svc |grep nginx
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
nginx-svc NodePort 10.68.230.130 none 8081:28081/TCP 15s
部署成功,pod 已经成功运行,服务发现已经做好了 28081 外部访问入口
2、验证 nginx 应用是否使用了 configMap 中的 nginx-config
登陆部署的应用 pod 里去查看一下
[root@server yaml]# kubectl exec -it my-nginx-55fd7587b7-7fscq bash -- 登陆容器
root@my-nginx-55fd7587b7-7fscq:/#
root@my-nginx-55fd7587b7-7fscq:/# cat /etc/nginx/conf.d/nginx.conf -- 查看配置确实是上面 vi 的内容
server {
listen 8081;
server_name _;
root /html;
location / { }
root@my-nginx-55fd7587b7-7fscq:/#
root@my-nginx-55fd7587b7-7fscq:/# ls -d /html/ -- 数据目录也已经创建好了
/html/
root@my-nginx-55fd7587b7-7fscq:/#
root@my-nginx-55fd7587b7-7fscq:/# ls -l /etc/nginx/conf.d/
total 0
lrwxrwxrwx 1 root root 17 Jan 31 09:31 nginx.conf - ..data/nginx.conf
-- 可以看到这个配置文件是一个相对路径不是实体文件
上面已经验证了应用确实使用了 configMap 的配置
这样我们就可以把不同的环境配置文件都在 k8s 里建一份,在部署的时候指定对应环境的配置文件即可。
这就解决了不同环境,在部署应用时要重新打包镜像的问题。
以上就是如何理解 kubernetes 的配置中心 configmap,丸趣 TV 小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注丸趣 TV 行业资讯频道。