Step 1. Profile 생성
먼저, profile yaml 파일을 작성한 후 kubectl apply -f 명령어로 생성하기
apiVersion: kubeflow.org/v1beta1
kind: Profile
metadata:
name: test # namespace
spec:
owner:
kind: User
name: sykang@email.com
resourceQuotaSpec:
hard:
cpu: "6"
memory: "16Gi"
requests.nvidia.com/gpu: "1"
persistentvolumeclaims: "10"
requests.storage: "100Gi"
profile 확인
kubectl get profile -A
Step 2. configmap 수정
kubeflow를 설치할 때 사용했던 manifests 폴더의 config-map.yaml 수정하기
config-map.yaml파일의 staticPasswords 아래를 복사해서 user 추가하기
Step 3. dex 다시 설치
# dex 삭제
kubectl delete pod dex -n auth
# 다시 설치
kustomize build common/dex/overlays/istio | kubectl apply -f -
Kubeflow Dashboard로 접속 성공!
'DKE > Kubernetes' 카테고리의 다른 글
[Kubernetes] NVIDIA device plugin 설치하기 / 2023.06.15 (0) | 2023.06.15 |
---|---|
[Kubernetes] local-path-storage 설치하기 / 2023.06.15 (0) | 2023.06.15 |
[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 |
Kubernetes 설치하기 (Ubuntu 20.04) / 2023.06.06 (0) | 2023.06.06 |