pod definition file 기준
spec.volumes
으로 볼륨을 생성하고, spec.containers.volumeMounts
에서 생성한 볼륨을 사용하도록 작성한다.
apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2024-01-12T13:45:56Z"
name: webapp
namespace: default
resourceVersion: "635"
uid: c52cd2b3-927f-416c-b053-793ed916d476
spec:
containers:
volumeMounts: # 사용하기
- mountPath: /log
name: smlee-vol
...
volumes: # 생성하기
- name: smlee-vol
hostPath:
path: /var/log/webapp # directory location on host
...
위의 예시는 호스트 /var/log/webapp
경로가 파드의 /log
로 마운팅