When you create a Pod, you can set environment variables for the containers that run in the Pod. To set environment variables, include the env field in the configuration file. 在創建pod時,你可以為運行在pod中的容器設置環境變量。當我們需要設置變量時,我們只需要在配置文件中(yaml)中加入env選項。
In this exercise, you create a Pod that runs one container. The configuration file for the Pod defines an environment variable with name DEMO_GREETING and value “Hello from the environment”. Here is the configuration file for the Pod: 在這個練習中,你將創建一個運行了一個容器的pod。在配置文件中為pod定義的的一個環境變量名為 DEMO_GREETING,值為 “Hello from the environment”。這個pod的配置文件envars.yaml如下:
apiVersion: v1kind: Podmetadata: name: envar-demo labels: purpose: demonstrate-envarsspec: containers: - name: envar-demo-container image: gcr.io/google-samples/node-hello:1.0 env: - name: DEMO_GREETING value: "Hello from the environment"Create a Pod based on the YAML configuration file: 通過YAML配置文件創建Pod:
kubectl create -f http://k8s.io/docs/tasks/configure-pod-container/envars.yamlList the running Pods: 查看正在運行的Pods
kubectl get pods -l purpose=demonstrate-envarsThe output is similar to this: 輸出內容如下:
NAME READY STATUS RESTARTS AGE envar-demo 1/1 Running 0 9sGet a shell to the container running in your Pod: 連接到Pod中的容器:
kubectl exec -it envar-demo -- /bin/bashIn your shell, run the PRintenv command to list the environment variables. 在這個shell中,執行命令printenv命令查看環境變量。
root@envar-demo:/# printenvThe output is similar to this: 輸出內容如下:
NODE_VERSION=4.4.2 EXAMPLE_SERVICE_PORT_8080_TCP_ADDR=10.3.245.237 HOSTNAME=envar-demo ... DEMO_GREETING=Hello from the environmentTo exit the shell, enter exit. 執行命令exit退出。
新聞熱點
疑難解答