目录贴:Kubernetes学习系列

  其他容器编排调度工具会大谈特谈“轻应用”、“十二要素应用”,这样就势必会对企业级复杂应用做很大的改动。Kubernetes是为了解决“如何合理使用容器支撑企业级复杂应用”这个问题而诞生的,所以它的设计理念是要支持绝大多数应用的原生形态。例如,很多应用程序的配置需要通过配置文件,命令行参数和环境变量的组合配置来完成(“十二要素应用”等均要求去配置)。这些配置应该从image内容中解耦,以此来保持容器化应用程序的可移植性。ConfigMap API资源提供了将配置数据注入容器的方式,同时保证该机制对容器来说是透明的。ConfigMap可以被用来保存单个属性,也可以用来保存整个配置文件或者JSON二进制大对象。

  ConfigMap API资源存储键/值对配置数据,这些数据可以在pods里使用。ConfigMap跟Secrets类似,但是ConfigMap可以更方便的处理不包含敏感信息的字符串。示例如下:

kind: ConfigMap
apiVersion: v1
metadata:
creationTimestamp: --18T19::38Z
name: example-config
namespace: default
data:
example.property.: hello
example.property.: world
example.property.file: |-
property.=value-
property.=value-
property.=value-

  通过示例代码可以看到:ConfigMap可以包含细粒度的配置项,如:example.property.1;也可以包含粗粒度的配置文件,如:example.property.file。

1、创建ConfigMap

1.1 从文件夹创建

[root@k8s-master propertirs]# cat /home/yaml/propertirs/game.properties
enemies=aliens
lives=
enemies.cheat=true
enemies.cheat.level=noGoodRotten
secret.code.passphrase=UUDDLRLRBABAS
secret.code.allowed=true
secret.code.lives=
[root@k8s-master propertirs]# cat /home/yaml/propertirs/ui.properties
color.good=purple
color.bad=yellow
allow.textmode=true
how.nice.to.look=fairlyNice
[root@k8s-master propertirs]# kubectl create configmap game-config --from-file=/home/yaml/propertirs/
configmap "game-config" created
[root@k8s-master propertirs]# kubectl describe configmaps game-config
#该方法只能得到ConfigMap的Key和size
Name: game-config
Namespace: default
Labels: <none>
Annotations: <none> Data
====
ui.properties: bytes
game.properties: bytes
#若想得到详细信息,可通过以下命令:
[root@k8s-master propertirs]# kubectl get configmaps game-config -o yaml
apiVersion: v1
data:
game.properties: |
enemies=aliens
lives=
enemies.cheat=true
enemies.cheat.level=noGoodRotten
secret.code.passphrase=UUDDLRLRBABAS
secret.code.allowed=true
secret.code.lives=
ui.properties: |
color.good=purple
color.bad=yellow
allow.textmode=true
how.nice.to.look=fairlyNice
kind: ConfigMap
metadata:
creationTimestamp: --21T03::34Z
name: game-config
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config
uid: a04f90f0-0de5-11e7-b3d5-fa163ebba51b

1.2 从文件创建

[root@k8s-master propertirs]# kubectl create configmap game-config- --from-file=/home/yaml/propertirs/game.properties --from-file=/home/yaml/propertirs/ui.properties
configmap "game-config-2" created
[root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
apiVersion: v1
data:
game.properties: |
enemies=aliens
lives=
enemies.cheat=true
enemies.cheat.level=noGoodRotten
secret.code.passphrase=UUDDLRLRBABAS
secret.code.allowed=true
secret.code.lives=
ui.properties: |
color.good=purple
color.bad=yellow
allow.textmode=true
how.nice.to.look=fairlyNice
kind: ConfigMap
metadata:
creationTimestamp: --21T03::15Z
name: game-config-
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config-
uid: b2e4dfab-0de6-11e7-b3d5-fa163ebba51b

1.3  指定data中的key

[root@k8s-master propertirs]# kubectl create configmap game-config- --from-file=game-special-key=/home/yaml/propertirs/game.properties
configmap "game-config-3" created
[root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
apiVersion: v1
data:
game-special-key: |
enemies=aliens
lives=
enemies.cheat=true
enemies.cheat.level=noGoodRotten
secret.code.passphrase=UUDDLRLRBABAS
secret.code.allowed=true
secret.code.lives=
kind: ConfigMap
metadata:
creationTimestamp: --21T03::23Z
name: game-config-
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config-
uid: 2345dad3-0de7-11e7-b3d5-fa163ebba51b

1.4  指定具体的值

[root@k8s-master propertirs]# kubectl create configmap game-config- --from-literal=special.user=zhenyu --from-literal=special.passwd=yaodidiao
configmap "game-config-4" created
[root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
apiVersion: v1
data:
special.passwd: yaodidiao
special.user: zhenyu
kind: ConfigMap
metadata:
creationTimestamp: --21T03::12Z
name: game-config-
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config-
uid: 8802f6d2-0de7-11e7-b3d5-fa163ebba51b

2、使用ConfigMap

2.1 环境变量或参数

  创建一个Pod,并将一个已经创建好的ConfigMap作为环境变量,注入到Pod中。

[root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
apiVersion: v1
data:
special.passwd: yaodidiao
special.user: zhenyu
kind: ConfigMap
metadata:
creationTimestamp: --21T03::12Z
name: game-config-
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config-
uid: 8802f6d2-0de7-11e7-b3d5-fa163ebba51b
[root@k8s-master propertirs]# cat testEnv.yaml
apiVersion: v1
kind: Pod
metadata:
labels:
name: testenv
role: master
name: testenv
spec:
containers:
- name: testenv
image: busybox
imagePullPolicy: IfNotPresent
env:
- name: SPECIAL_USER
valueFrom:
configMapKeyRef:
name: game-config-
key: special.user
command:
- sleep
- ""
[root@k8s-master propertirs]# kubectl create -f testEnv.yaml
pod "testenv" created
[root@k8s-master propertirs]# kubectl exec -ti testenv sh
/ # echo $SPECIAL_USER
zhenyu
/ #

2.2 挂载文件数据卷

[root@k8s-master propertirs]# kubectl get configmaps game-config -o yaml
apiVersion: v1
data:
game.properties: |
enemies=aliens
lives=
enemies.cheat=true
enemies.cheat.level=noGoodRotten
secret.code.passphrase=UUDDLRLRBABAS
secret.code.allowed=true
secret.code.lives=
ui.properties: |
color.good=purple
color.bad=yellow
allow.textmode=true
how.nice.to.look=fairlyNice
kind: ConfigMap
metadata:
creationTimestamp: --21T03::34Z
name: game-config
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config
uid: a04f90f0-0de5-11e7-b3d5-fa163ebba51b
[root@k8s-master propertirs]# cat testVolume.yaml
apiVersion: v1
kind: Pod
metadata:
labels:
name: testvolume
role: master
name: testvolume
spec:
containers:
- name: testvolume
image: busybox
imagePullPolicy: IfNotPresent
volumeMounts:
- name: config-volume
mountPath: /etc/config
command:
- sleep
- ""
volumes:
- name: config-volume
configMap:
name: game-config
[root@k8s-master propertirs]# kubectl create -f testVolume.yaml
pod "testvolume" created
[root@k8s-master propertirs]# kubectl exec -ti testvolume sh
/ # cd /etc/config/
/etc/config # ls
game.properties ui.properties
/etc/config # cat game.properties
enemies=aliens
lives=
enemies.cheat=true
enemies.cheat.level=noGoodRotten
secret.code.passphrase=UUDDLRLRBABAS
secret.code.allowed=true
secret.code.lives=
/etc/config # cat ui.properties
color.good=purple
color.bad=yellow
allow.textmode=true
how.nice.to.look=fairlyNice
/etc/config #

2.3 挂载信息数据卷

[root@k8s-master propertirs]# cat testVolume.yaml
apiVersion: v1
kind: Pod
metadata:
labels:
name: testvolume
role: master
name: testvolume
spec:
containers:
- name: testvolume
image: busybox
imagePullPolicy: IfNotPresent
volumeMounts:
- name: config-volume
mountPath: /etc/config
command:
- sleep
- ""
volumes:
- name: config-volume
configMap:
name: game-config-
[root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
apiVersion: v1
data:
special.passwd: yaodidiao
special.user: zhenyuyaodidiao
kind: ConfigMap
metadata:
creationTimestamp: --21T06::29Z
name: game-config-
namespace: default
resourceVersion: ""
selfLink: /api/v1/namespaces/default/configmaps/game-config-
uid: bd086dca-0dff-11e7-b3d5-fa163ebba51b
[root@k8s-master propertirs]# kubectl create -f testVolume.yaml
pod "testvolume" created
[root@k8s-master propertirs]# kubectl exec -ti testvolume sh
/ # cd /etc/config/
/etc/config # ls
special.passwd special.user
/etc/config # cat special.user
zhenyuyaodidiao/etc/config #
/etc/config # exit

2.4 热更新

  当ConfigMap以数据卷的形式挂载进Pod的时,这时更新ConfigMap(或删掉重建ConfigMap),Pod内挂载的配置信息会热更新。这时可以增加一些监测配置文件变更的脚本,然后reload对应服务。

Kubernetes外挂配置管理—ConfigMap介绍的更多相关文章

  1. K8S学习笔记之Kubernetes 配置管理 ConfigMap

    0x00 概述 很多情况下我们为某一应用做好镜像,当我们想修改其中的一些参数的时候,就变得比较麻烦,又要重新制作镜像,我们是不是有一种方式,让镜像根据不同的场景调用我们不同的配置文件呢,那我们就需要用 ...

  2. Kubernetes 配置管理 ConfigMap(十二)

    目录 一.背景 二.创建 ConfigMap 2.1.通过 --from-literal 2.2.通过 --from-file 2.3.通过--from-env-file 2.4.YAML 配置文件 ...

  3. 【k8s】kubernetes(k8s)介绍

    转自 http://blog.csdn.net/Real_Myth/article/details/78719244 一.Kubernetes系列之介绍篇   •Kubernetes介绍 1.背景介绍 ...

  4. Docker集群编排工具之Kubernetes(K8s)介绍、安装及使用

    K8s基础原理 k8s中文社区:https://www.kubernetes.org.cn/ 简介 Kubernetes与较早的集群管理系统Mesos和YARN相比,对容器尤其是 Docker的支持更 ...

  5. kubernetes系列之ConfigMap使用方式

    作用理解 核心用途就是容器和配置的分离解耦. 如启用一个mysql容器,mysql容器重要的文件有两部分,一部分为存储数据文件,一部分为配置文件my.cnf,存储数据可以用持久存储实现和容器的分离解耦 ...

  6. (转帖)开源容器集群管理系统Kubernetes架构及组件介绍

    最近在搞Docker还有她的管理工具,选型Kuberetes后,被她的术语和概念搞得晕头转向...看了一篇文章还不错,放到这里分享出来. 地址:http://www.linuxidc.com/Linu ...

  7. Kubernetes系列之Helm介绍篇

    本次系列使用的所需部署包版本都使用的目前最新的或最新稳定版,安装包地址请到公众号内回复[K8s实战]获取 介绍 Helm 是 Deis 开发的一个用于 Kubernetes 应用的包管理工具,主要用来 ...

  8. Kubernetes中的Configmap和Secret

    本文的试验环境为CentOS 7.3,Kubernetes集群为1.11.2,安装步骤参见kubeadm安装kubernetes V1.11.1 集群 应用场景:镜像往往是一个应用的基础,还有很多需要 ...

  9. Kubernetes里的ConfigMap的用途

    顾名思义,ConfigMap用于保存配置数据的键值对,可以用来保存单个属性,也可以用来保存配置文件. ConfigMap同Kubernetes的另一个概念secret类似,区别是ConfigMap主要 ...

随机推荐

  1. <jsp:param>标签给属性赋值时的一个坑

    http://blog.sina.cn/dpool/blog/s/blog_58c5066001011gdn.html 因为: <jsp:forward和<jsp:param在被编译成ja ...

  2. DB2隔离级别之RR/RS/CS/UR

      1.RR隔离级别:在此隔离级别下. DB2会锁住全部相关的纪录. 在一个SQL语句运行期间, 全部运行此语句扫描过的纪录都会被加上对应的锁.在一个SQL语句运行期间,全部运行此语句扫描过的纪录都会 ...

  3. LINUX下从mysql文件导出后标题合并

    这两天在做数据导出,真实折磨死了,记录下来.导出的格式是csv. 由于我们的数据量比较大,导出到excel时,几百万上千万行的时候用程序去写入肯定是不行,所以自然就想到了mysql的outfile功能 ...

  4. C#WinForm无边框窗体移动方法、模仿鼠标单击标题栏移动窗体位置

    C#WinForm无边框窗体移动方法.模仿鼠标单击标题栏移动窗体位置 这里介绍俩种办法 方法一:直接通过修改窗体位置从而达到移动窗体的效果 方法二:直接伪装发送单击任务栏消息,让应用程序误以为单击任务 ...

  5. 使用PsExec获取shell执行命令

    PsExec PsExec是pstools工具组套件的一部分,确成为了渗透利器,下载地址:点击这里下载 连接shell 我的Windows Server 2012默认打开域网络防火墙的时候,是不能连接 ...

  6. 大臣的旅费---树的直径(dfs)

    很久以前,T王国空前繁荣.为了更好地管理国家,王国修建了大量的快速路,用于连接首都和王国内的各大城市. 为节省经费,T国的大臣们经过思考,制定了一套优秀的修建方案,使得任何一个大城市都能从首都直接或者 ...

  7. vue的数据绑定和组件化

    组件:就是自定义标签, 也是Vue的实例对象; 组件好处:就像工作分工,函数封装等 组件分为全局组件和局部组件: 全局组件,在Vue身上的组件,所有的vue挂载的元素内都可以使用:正是因为这一点,co ...

  8. Dev_GridView:设置列为Button

    1. gridview ——run designer ——columns ——columns Edit选择repositoryItemButtonEdit1列 2. 更改colums ——showBu ...

  9. vue-cli+webpack+router+vuex---之vuex使用

    有信心的可以去看官方的文档 vue 的官方文档有个显著的特点---代码粘贴不全 Vue中文站:cn.vuejs.org vue-router官方教程:router.vuejs.org/zh-cn vu ...

  10. TCP 套叠字

    一.  TCP 协议 # ------------TCP套叠字-------------------- server 端 import socket,time ip_port=('localhost' ...