我有一个docker图像,其中包含属性文件的选项,如
CMD java -jar /opt/test/test-service.war
--spring.config.location=file:/conf/application.properties
我在-v
命令中使用docker run
卷装载如下。
-v /usr/xyz/props/application.properties:/conf/application.properties
我不确定如何在Kubernetes中实现同样的目标 我使用minikube在我当地的mac中运行kubernetes。
答案 0 :(得分:5)
这应该是 host path volume ,用此示例窗格说明。
apiVersion: v1
kind: Pod
metadata:
name: test-pd
spec:
containers:
- image: k8s.gcr.io/test-webserver
name: test-container
volumeMounts:
- mountPath: /test-pd
name: test-volume
volumes:
- name: test-volume
hostPath:
# directory location on host
path: /data
# this field is optional
type: Directory