Pod中使用ConfigMap的方法(pod只能使用相同命名空间中的configmap)

admin 205 2022-08-20

阿里云服务器优惠多,折扣错,惊喜多,请咨询:www.wqiis.com

Pod中使用ConfigMap的方法(pod只能使用相同命名空间中的configmap)

在Pod中使用ConfigMap配置环境变量:

Pod中使用ConfigMap的方法(pod只能使用相同命名空间中的configmap)

apiVersion: v1kind: Podmetadata:  name: configmap-demo-podspec:  containers:    - name: demo      image: alpine      command: ["sleep", "3600"]      env:        - name: PLAYER_INITIAL_LIVES          valueFrom:            configMapKeyRef:              name: my-config              key: player_initial_lives        - name: UI_PROPERTIES_FILE_NAME          valueFrom:            configMapKeyRef:              name: my-config              key: ui_properties_file_name

在Pod中使用ConfigMap挂载配置文件:

apiVersion: v1kind: Podmetadata:  name: configmap-demo-podspec:  containers:    - name: demo      image: alpine      command: ["sleep", "3600"]      volumeMounts:      - name: config        mountPath: "/config"        readOnly: true  volumes:    - name: config      configMap:        name: my-config        items:        - key: "game.properties"          path: "game.properties"

上一篇:ECS创建过程--网络配置和高级配置(专有网络类型的ecs实例只能在创建时指定)
下一篇:ECS创建过程--基础配置(4)(ecs环境配置)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~