目录贴:Kubernetes学习系列

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

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

  1. kind: ConfigMap
  2. apiVersion: v1
  3. metadata:
  4. creationTimestamp: --18T19::38Z
  5. name: example-config
  6. namespace: default
  7. data:
  8. example.property.: hello
  9. example.property.: world
  10. example.property.file: |-
  11. property.=value-
  12. property.=value-
  13. property.=value-

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

1、创建ConfigMap

1.1 从文件夹创建

  1. [root@k8s-master propertirs]# cat /home/yaml/propertirs/game.properties
  2. enemies=aliens
  3. lives=
  4. enemies.cheat=true
  5. enemies.cheat.level=noGoodRotten
  6. secret.code.passphrase=UUDDLRLRBABAS
  7. secret.code.allowed=true
  8. secret.code.lives=
  9. [root@k8s-master propertirs]# cat /home/yaml/propertirs/ui.properties
  10. color.good=purple
  11. color.bad=yellow
  12. allow.textmode=true
  13. how.nice.to.look=fairlyNice
  14. [root@k8s-master propertirs]# kubectl create configmap game-config --from-file=/home/yaml/propertirs/
  15. configmap "game-config" created
  16. [root@k8s-master propertirs]# kubectl describe configmaps game-config
  17. #该方法只能得到ConfigMap的Key和size
  18. Name: game-config
  19. Namespace: default
  20. Labels: <none>
  21. Annotations: <none>
  22.  
  23. Data
  24. ====
  25. ui.properties: bytes
  26. game.properties: bytes
  27. #若想得到详细信息,可通过以下命令:
  28. [root@k8s-master propertirs]# kubectl get configmaps game-config -o yaml
  29. apiVersion: v1
  30. data:
  31. game.properties: |
  32. enemies=aliens
  33. lives=
  34. enemies.cheat=true
  35. enemies.cheat.level=noGoodRotten
  36. secret.code.passphrase=UUDDLRLRBABAS
  37. secret.code.allowed=true
  38. secret.code.lives=
  39. ui.properties: |
  40. color.good=purple
  41. color.bad=yellow
  42. allow.textmode=true
  43. how.nice.to.look=fairlyNice
  44. kind: ConfigMap
  45. metadata:
  46. creationTimestamp: --21T03::34Z
  47. name: game-config
  48. namespace: default
  49. resourceVersion: ""
  50. selfLink: /api/v1/namespaces/default/configmaps/game-config
  51. uid: a04f90f0-0de5-11e7-b3d5-fa163ebba51b

1.2 从文件创建

  1. [root@k8s-master propertirs]# kubectl create configmap game-config- --from-file=/home/yaml/propertirs/game.properties --from-file=/home/yaml/propertirs/ui.properties
  2. configmap "game-config-2" created
  3. [root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
  4. apiVersion: v1
  5. data:
  6. game.properties: |
  7. enemies=aliens
  8. lives=
  9. enemies.cheat=true
  10. enemies.cheat.level=noGoodRotten
  11. secret.code.passphrase=UUDDLRLRBABAS
  12. secret.code.allowed=true
  13. secret.code.lives=
  14. ui.properties: |
  15. color.good=purple
  16. color.bad=yellow
  17. allow.textmode=true
  18. how.nice.to.look=fairlyNice
  19. kind: ConfigMap
  20. metadata:
  21. creationTimestamp: --21T03::15Z
  22. name: game-config-
  23. namespace: default
  24. resourceVersion: ""
  25. selfLink: /api/v1/namespaces/default/configmaps/game-config-
  26. uid: b2e4dfab-0de6-11e7-b3d5-fa163ebba51b

1.3  指定data中的key

  1. [root@k8s-master propertirs]# kubectl create configmap game-config- --from-file=game-special-key=/home/yaml/propertirs/game.properties
  2. configmap "game-config-3" created
  3. [root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
  4. apiVersion: v1
  5. data:
  6. game-special-key: |
  7. enemies=aliens
  8. lives=
  9. enemies.cheat=true
  10. enemies.cheat.level=noGoodRotten
  11. secret.code.passphrase=UUDDLRLRBABAS
  12. secret.code.allowed=true
  13. secret.code.lives=
  14. kind: ConfigMap
  15. metadata:
  16. creationTimestamp: --21T03::23Z
  17. name: game-config-
  18. namespace: default
  19. resourceVersion: ""
  20. selfLink: /api/v1/namespaces/default/configmaps/game-config-
  21. uid: 2345dad3-0de7-11e7-b3d5-fa163ebba51b

1.4  指定具体的值

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

2、使用ConfigMap

2.1 环境变量或参数

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

  1. [root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
  2. apiVersion: v1
  3. data:
  4. special.passwd: yaodidiao
  5. special.user: zhenyu
  6. kind: ConfigMap
  7. metadata:
  8. creationTimestamp: --21T03::12Z
  9. name: game-config-
  10. namespace: default
  11. resourceVersion: ""
  12. selfLink: /api/v1/namespaces/default/configmaps/game-config-
  13. uid: 8802f6d2-0de7-11e7-b3d5-fa163ebba51b
  14. [root@k8s-master propertirs]# cat testEnv.yaml
  15. apiVersion: v1
  16. kind: Pod
  17. metadata:
  18. labels:
  19. name: testenv
  20. role: master
  21. name: testenv
  22. spec:
  23. containers:
  24. - name: testenv
  25. image: busybox
  26. imagePullPolicy: IfNotPresent
  27. env:
  28. - name: SPECIAL_USER
  29. valueFrom:
  30. configMapKeyRef:
  31. name: game-config-
  32. key: special.user
  33. command:
  34. - sleep
  35. - ""
  36. [root@k8s-master propertirs]# kubectl create -f testEnv.yaml
  37. pod "testenv" created
  38. [root@k8s-master propertirs]# kubectl exec -ti testenv sh
  39. / # echo $SPECIAL_USER
  40. zhenyu
  41. / #

2.2 挂载文件数据卷

  1. [root@k8s-master propertirs]# kubectl get configmaps game-config -o yaml
  2. apiVersion: v1
  3. data:
  4. game.properties: |
  5. enemies=aliens
  6. lives=
  7. enemies.cheat=true
  8. enemies.cheat.level=noGoodRotten
  9. secret.code.passphrase=UUDDLRLRBABAS
  10. secret.code.allowed=true
  11. secret.code.lives=
  12. ui.properties: |
  13. color.good=purple
  14. color.bad=yellow
  15. allow.textmode=true
  16. how.nice.to.look=fairlyNice
  17. kind: ConfigMap
  18. metadata:
  19. creationTimestamp: --21T03::34Z
  20. name: game-config
  21. namespace: default
  22. resourceVersion: ""
  23. selfLink: /api/v1/namespaces/default/configmaps/game-config
  24. uid: a04f90f0-0de5-11e7-b3d5-fa163ebba51b
  25. [root@k8s-master propertirs]# cat testVolume.yaml
  26. apiVersion: v1
  27. kind: Pod
  28. metadata:
  29. labels:
  30. name: testvolume
  31. role: master
  32. name: testvolume
  33. spec:
  34. containers:
  35. - name: testvolume
  36. image: busybox
  37. imagePullPolicy: IfNotPresent
  38. volumeMounts:
  39. - name: config-volume
  40. mountPath: /etc/config
  41. command:
  42. - sleep
  43. - ""
  44. volumes:
  45. - name: config-volume
  46. configMap:
  47. name: game-config
  48. [root@k8s-master propertirs]# kubectl create -f testVolume.yaml
  49. pod "testvolume" created
  50. [root@k8s-master propertirs]# kubectl exec -ti testvolume sh
  51. / # cd /etc/config/
  52. /etc/config # ls
  53. game.properties ui.properties
  54. /etc/config # cat game.properties
  55. enemies=aliens
  56. lives=
  57. enemies.cheat=true
  58. enemies.cheat.level=noGoodRotten
  59. secret.code.passphrase=UUDDLRLRBABAS
  60. secret.code.allowed=true
  61. secret.code.lives=
  62. /etc/config # cat ui.properties
  63. color.good=purple
  64. color.bad=yellow
  65. allow.textmode=true
  66. how.nice.to.look=fairlyNice
  67. /etc/config #

2.3 挂载信息数据卷

  1. [root@k8s-master propertirs]# cat testVolume.yaml
  2. apiVersion: v1
  3. kind: Pod
  4. metadata:
  5. labels:
  6. name: testvolume
  7. role: master
  8. name: testvolume
  9. spec:
  10. containers:
  11. - name: testvolume
  12. image: busybox
  13. imagePullPolicy: IfNotPresent
  14. volumeMounts:
  15. - name: config-volume
  16. mountPath: /etc/config
  17. command:
  18. - sleep
  19. - ""
  20. volumes:
  21. - name: config-volume
  22. configMap:
  23. name: game-config-
  24. [root@k8s-master propertirs]# kubectl get configmaps game-config- -o yaml
  25. apiVersion: v1
  26. data:
  27. special.passwd: yaodidiao
  28. special.user: zhenyuyaodidiao
  29. kind: ConfigMap
  30. metadata:
  31. creationTimestamp: --21T06::29Z
  32. name: game-config-
  33. namespace: default
  34. resourceVersion: ""
  35. selfLink: /api/v1/namespaces/default/configmaps/game-config-
  36. uid: bd086dca-0dff-11e7-b3d5-fa163ebba51b
  37. [root@k8s-master propertirs]# kubectl create -f testVolume.yaml
  38. pod "testvolume" created
  39. [root@k8s-master propertirs]# kubectl exec -ti testvolume sh
  40. / # cd /etc/config/
  41. /etc/config # ls
  42. special.passwd special.user
  43. /etc/config # cat special.user
  44. zhenyuyaodidiao/etc/config #
  45. /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. vs2017离线安装且安装包不占用C盘空间

    [参考]vs2017离线安装且安装包不占用C盘空间 第一步:下载离线安装包 https://www.visualstudio.com/zh-hans/downloads/ 在官方地址下载vs_prof ...

  2. 【转】app之YdbOnline说明文档

    概述 YdbOnline是面向网页开发者提供的网页开发工具包. 通过使用YdbOnline,网页开发者可借助YdbOnline高效地使用语音.位置等手机系统的能力,同时可以直接使用清除缓存.扫一扫等A ...

  3. 5迪米特法则LoD

    一.什么是迪米特法则 迪米特法则(Law of Demeter )又叫做最少知识 原则,也就是说,一个对象应当对其他对象尽可 能少的了解. 迪米特法则最初是用来作为面向对象的系统设 计风格的一种法则, ...

  4. EnumUtil 链表转换工具类

    package com.das.common.util; import org.springframework.util.CollectionUtils; import java.lang.refle ...

  5. Nessus中文报告自动化脚本

    前言 Nessus扫描完成,总要花挺多时间去整理报告,为此写了一个小脚本,用于自动化生成中文漏洞报告. 解析导出的html报告,自动翻译成中文,并提供修复建议,减少整理报告的时间,提升工作效率. gi ...

  6. gcc编译c语言程序

    编译:当前源代码编译成二进制目标文件(.obj文件) 链接(link):将生成的.obj文件与库文件.lib等文件链接,生成可执行文件(.exe文件).   一个现代编译器的主要工作流程如下: 源程序 ...

  7. Golang 笔记 1 基础、基本数据类型

    一.Go语言基础 1. 基础 Go语言中的标识符必须以字母(Unicode字母,PHP/JS可以用中文作为变量名)下划线开头.大写字母跟小写字母是不同的:Hello和hello是两个不同的名字.  G ...

  8. vs2008 使用百度编辑器

    准备工作 百度编辑器官方下载,并将文件放到项目根目录下. 因为vs2008 只到Framework 3.5,所以需要将4.0的东西去掉. 1)下载.net framework 3.5版的 Newton ...

  9. java httpclient post xml demo

    jar archive: http://archive.apache.org/dist/httpcomponents/ 基于httpclient 2.0 final的demo(for jdk1.5/1 ...

  10. 下载Crypto,CyCrypto,PyCryptodome 报错问题

    python下载Crypto,CyCrypto,PyCryptodome,如有site-packages中存在crypto.pycrypto,在pip之前,需要pip3 uninstall crypt ...