minikube(36)
-
Minikube PV와 PVC의 accessModes 사용방법
The accessModes field in PersistentVolume (PV) and PersistentVolumeClaim (PVC) specifies the types of access permissions available for the volume. It determines how the volume can be mounted by Pods.Access Modes:ReadWriteOnce (RWO)Description: The volume can be mounted as read-write by a single node.Use Case: Suitable for scenarios where only one Pod requires write access at a time, such as bloc..
2025.01.04 -
Minikube volume 임시 제거
volumeMounts: [] # No volume mounts for now to isolate the issue
2025.01.04 -
Minikube deployment 실시간으로 변경하고 적용하기
수정모드 진입kubectl edit deployment/test -n test# 수정후 빠져나오기wq!적용kubectl rollout restart deployment/test -n test# 변경사항 확인kubectl get pods -Akubectl exec -it {파드명} -n test -- sh
2025.01.04 -
Minikube 이미지가 이상하게 변경해도 바뀌지 않는 경우
docker든 kubectl이든 옵션에 따라 다운로드된 image가 있는지 확인하고, 없으면 다시 다운로드 받음그래서, 만약 tag을 동일하게 해서 이미지를 생성하는 경우, registry까지 가서 다시 가져오지 않는 경우 존재함image 다운로드 옵션을 변경하던지, tag를 생성시마다 바꾸던지 해야 함싫으면, 다운로드된 image를 지워도 됨그런데, 여기까지 생각이 오려면 삽질을 많이하게 되는 경향이 있으니, 이미지가 내가 원하는 대로 변경되지 않으면, 확인해 볼 필요 있음
2025.01.04 -
Minikube 다운로드된 이미지 목록 확인
minikube ssh -- docker images
2025.01.04 -
Minikube PV와 NFS 연결
PVaccessModes 중요apiVersion: v1kind: PersistentVolumemetadata: name: nfs-pvspec: capacity: storage: 10Gi accessModes: - ReadWriteMany persistentVolumeReclaimPolicy: Retain nfs: path: /data/shared # NFS server directory server: 192.168.1.100 # NFS server IP readOnly: false # Set to true if read-onlyPVC storageClassName: "" 중요apiVersion: v1kind: Per..
2025.01.03