rook-ceph storageclass는 설치할 때 무슨 문제가 있는지 pv를 자동으로 생성해주지않아서 수동으로 생성해 주어야했다
따라서 local-path-storage를 설치했다
Step 1. local-path-storage 설치하기
kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml
Step 2. default로 설정하기
# local-path-storage를 default 설정
kubectl patch storageclass local-path -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
# 기존의 rook-ceph default 해제
kubectl patch storageclass rook-ceph-block -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}'
'DKE > Kubernetes' 카테고리의 다른 글
[Kubeflow] Jupyter jovyan 사용자를 sudo 그룹에 추가하기 / 2023.06.16 (0) | 2023.06.16 |
---|---|
[Kubernetes] NVIDIA device plugin 설치하기 / 2023.06.15 (0) | 2023.06.15 |
[Kubeflow] 계정(User) 추가하기 / 2023.06.14 (0) | 2023.06.14 |
[Kubeflow] ERROR [403] poddefaults.kubeflow.org is forbidden / 2023.06.14 (0) | 2023.06.14 |
Kubeflow 설치하기 (Ubuntu 20.04) / 2023.06.09 (6) | 2023.06.09 |