ConfigMap 對象能夠用來管理普通的、非機密的配置信息,以明文形式存放。html
Secret 對象用來管理重要的、機密的、不能泄露的相似祕鑰、密碼等信息。linux
ConfigMap 對象能夠實現程序的配置和程序自己的解耦,從而使程序更具移植性。api
從目錄建立微信
mkdir 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 kubectl create configmap game-config --from-file=configmap/
能夠看到兩個文件內容合併存儲到 data 中,文件名轉換爲 keyui
# kubectl get configmap game-config -o yaml 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 。。。。。。
經過文件建立spa
kubectl create configmap game-config-2 --from-file=configmap/game.properties
經過多個文件建立命令行
效果和經過目錄建立同樣rest
kubectl create configmap game-config-2 --from-file=configmap/game.properties --from-file=configmap/ui.properties
從環境文件建立 ConfigMap日誌
使用 --from-env-file 選項code
# 將樣本文件下載到 `configmap/` 目錄 wget https://kubernetes.io/examples/configmap/game-env-file.properties -O configmap/game-env-file.properties # kubectl create configmap game-config-env-file --from-env-file=configmap/game-env-file.properties configmap/game-config-env-file created
查看
# kubectl get configmap game-config-env-file -o yaml apiVersion: v1 data: allowed: '"true"' enemies: aliens lives: "3" kind: ConfigMap
能夠看到文件內容直接存儲到configmap data中做爲鍵值對,沒有使用文件名的key 對應多行值的形式
env文件特色:
定義從文件建立 ConfigMap 時要使用的鍵
默認文件名是鍵名
指定鍵名爲 <my-key-name>
kubectl create configmap game-config-3 --from-file=<my-key-name>=<path-to-file>
命令行中指定key/value值
不從文件獲取,直接命令行中指定
kubectl create configmap special-config --from-literal=special.how=very --from-literal=special.type=charm
使用卷掛載的方式來使用 ConfigMap
建立 ConfigMap,名爲 special-config
apiVersion: v1 kind: ConfigMap metadata: name: special-config namespace: default data: SPECIAL_LEVEL: very SPECIAL_TYPE: charm
建立 Pod
apiVersion: v1 kind: Pod metadata: name: dapi-test-pod spec: containers: - name: test-container image: busybox command: [ "/bin/sh", "-c", "ls /etc/config/" ] volumeMounts: - name: config-volume mountPath: /etc/config volumes: - name: config-volume configMap: name: special-config restartPolicy: Never
在 Pod 配置文件中,建立一個卷,名爲 config-volume,該卷掛載了名爲 special-config 的 configMap
在容器中,將名爲 config-volume 的卷掛載到系統路徑 /etc/config 中。
查看結果
該容器執行了命令 ls /etc/config/,咱們能夠看下容器日誌
# kubectl logs dapi-test-pod SPECIAL_LEVEL SPECIAL_TYPE
能夠看到 /etc/config 目錄下出現了以 ConfigMap key 爲名稱的文件,內容爲ConfigMap key對應的value
微信公衆號:zuolinux_com