# 创建本地目录
mkdir configmap
# 将示例文件下载到 `configmap` 目录
wget https://kubernetes.io/examples/configmap/game.properties -O configmap/game.properties
wget https://kubernetes.io/examples/configmap/ui.properties -O configmap/ui.properties

# 创建 configmap
kubectl create configmap -n killer game-config --from-file=configmap/

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_Pod


查看一下下载的文件的内容

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_学习_02


查看下configmap

命令

kubectl get configmap -n killer

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_容器_03

apiVersion: v1
items:
- apiVersion: v1
  data:
    game.properties: |-
      enemies=aliens
      lives=3
      enemies.cheat=true
      enemies.cheat.level=noGoodRotten
      secret.code.passphrase=UUDDLRLRBABAS
      secret.code.allowed=true
      secret.code.lives=30
    ui.properties: |
 color.good=purple
 color.bad=yellow
 allow.textmode=true
 how.nice.to.look=fairlyNice
  kind: ConfigMap
  metadata:
    creationTimestamp: "2022-07-10T18:02:16Z"
    name: game-config
    namespace: killer
    resourceVersion: "330866"
    selfLink: /api/v1/namespaces/killer/configmaps/game-config
    uid: a9551dbc-f42b-47c0-b44d-5b80256b7ff1
kind: List
metadata:
  resourceVersion: ""
  selfLink: ""
基于文件

命令

kubectl create configmap -n killer ui-config --from-file=configmap/ui.properties

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_Pod_04


创建环境变量

game-env-file.properties内容如下:

enemies=aliens
 lives=3
 allowed=“true”

命令

kubectl create configmap game-config-env-file -n killer --from-env-file=configmap/game-env-file.properties

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_环境变量_05


从 Kubernetes 1.23 版本开始,kubectl 支持多次指定 --from-env-file 参数来从多个数据源创建 ConfigMap。

kubectl create configmap config-multi-env-files \
        --from-env-file=configure-pod-container/configmap/game-env-file.properties \
        --from-env-file=configure-pod-container/configmap/ui-env-file.properties

还有通过生成器和字面值创建configmap,由于一般配置比较多,还是使用目录或文件更方便,这里就不展示了。

使用

环境变量

使用 envFrom 将所有 ConfigMap 的数据定义为容器环境变量,ConfigMap 中的键成为 Pod 中的环境变量名称。
命令
env-test.yaml文件内容如下:

apiVersion: v1
kind: Pod
metadata:
  name: env-test-pod
spec:
  containers:
    - name: env-test-pod
      image: busybox
      imagePullPolicy: IfNotPresent
      command: [ "/bin/sh", "-c", "env" ]
      envFrom:
      - configMapRef:
          name: game-config-env-file
  restartPolicy: Never

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_容器_06


可以看到刚才的文件中的键值对确实成为了Pod中的环境变量。

挂载
覆盖

注意:这种挂载方式会覆盖目录
busybox的/usr下有sbin目录
命令
volume-test.yaml文件内容如下:

apiVersion: v1
kind: Pod
metadata:
  name: volume-test-pod
spec:
  containers:
    - name: test-container
      image: busybox
      imagePullPolicy: IfNotPresent
      command: [ "/bin/sh","-c","cd /usr && ls && cat /usr/keys" ]
      volumeMounts:
      - name: config-volume
        mountPath: /usr
  volumes:
    - name: config-volume
      configMap:
        name: game-config
        items:
        - key: game.properties
          path: keys
  restartPolicy: Never
kubectl create -f volume-test.yaml -n killer

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_容器_07


可以看到,只有keys文件,没有sbin目录了。

subPath

如果你想挂载的目录下有其他的目录或文件,可以使用这种方式。
命令
subpath-test.yaml

apiVersion: v1
kind: Pod
metadata:
  name: subpath-test-pod
spec:
  containers:
    - name: test-container
      image: busybox
      imagePullPolicy: IfNotPresent
      command: [ "/bin/sh","-c","cd /usr && ls && cat /usr/keys" ]
      volumeMounts:
      - name: config-volume
        mountPath: /usr/keys
        subPath: usr/keys
  volumes:
    - name: config-volume
      configMap:
        name: game-config
        items:
        - key: game.properties
          path: usr/keys
  restartPolicy: Never

注意:前面不要加**/**

kubectl create -f subpath-test.yaml -n killer

结果

k8s 环境变量 KUBERNETES_POD_IP 没了 k8s修改configmap 重启pod_容器_08