k 8 s volumeMounts機能使用時subPathパラメータ
1278 ワード
podのyamlファイルを書く場合、クラウドストレージを使用したい場合はvolumeMountsというproperty、mountPathはcontainer内部ディレクトリ、subPathはmountpathに隣接しているが、最もローカルパスと誤解されやすいが、実は遠位クラウドストレージ上のサブパスである
だからpod内部に入ってディスクの状況を見て、表示しますbbuser@stream-notifications-baseline-learn-tomcat-7cd697-2xwp7:~$ df -v Filesystem 1K-blocks Used Available Use% Mounted on 10.114.70.2:/learn_perf_bbcontent_1/instance/stream-notifications-baseline 570422592 19338048 551084544 4%/mnt/bbcontent
volumeとname(containerの名前)は統一レベルです.
だからpod内部に入ってディスクの状況を見て、表示しますbbuser@stream-notifications-baseline-learn-tomcat-7cd697-2xwp7:~$ df -v Filesystem 1K-blocks Used Available Use% Mounted on 10.114.70.2:/learn_perf_bbcontent_1/instance/stream-notifications-baseline 570422592 19338048 551084544 4%/mnt/bbcontent
- name: learn
image: ${LEARN_DOCKER_IMAGE}
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: ${LEARN_CPU_REQUEST}
memory: ${LEARN_MEM_REQUEST}
limits:
cpu: ${LEARN_CPU_LIMITS}
memory: ${LEARN_MEM_LIMITS}
command:
- ${BB_USER_HOME}/bin/launcher.sh
env:
- name: DEV_FEATURES
valueFrom:
configMapKeyRef:
name: ${INSTANCE_NAME}-learn-config
key: DEV_FEATURES
volumeMounts:
- name: bbcontent
**mountPath: /mnt/bbcontent
subPath: instance/${INSTANCE_NAME} **
volumes:
- name: bbcontent
persistentVolumeClaim:
claimName: learn-deployments-share
volumeとname(containerの名前)は統一レベルです.