是否可以在kubernetes中使用configmap和hostPath?

时间:2017-12-19 06:58:32

标签: kubernetes

而不是使用卷主机路径的直接配置,例如

 volumes:
    - name: mongo-24
      hostPath:
        path: /my/path/to/file/or/directory
        type: DirectoryOrCreate

我想把它放到configmap中,所以我试过这个:

  volumes:
    - name: myVolume
      hostPath:
        path: 
          valueFrom:
          configMapKeyRef:
            name: common-config
            key: MY_VOLUME_PATH
        type: DirectoryOrCreate

但这不成功,因为:

  

验证数据的错误:字段的预期类型字符串   spec.template.spec.volumes [0] .hostPath.path,得到地图

是否可以将hostPath / path与config map一起使用?

1 个答案:

答案 0 :(得分:0)

简单地说,不。问题是,为什么你需要它/你想要实现什么?