Docker & Kubenetes
2023. 9. 4.
쿠버네티스 볼륨 PV 와 PVC
emptyDir 파드가 생성될 때 같이 생성되고 삭제될 때 같이 삭제되는 볼륨으로, 생성 당시에 아무 내용도 없다. 파드내에 컨테이너들이 공유 가능하다. apiVersion: v1 kind: Pod metadata: name: shared-volumes spec: containers: - name: redis image: redis volumeMounts: - name: shared-storage mountPath: /data/shared - name: nginx image: nginx volumeMounts: - name: shared-storage mountPath: /data/shared volumes: - name : shared-storage emptyDir: {} 위와 같은 yaml 파일로 파..