Update jupyter configuration for network connection

This commit is contained in:
wbsong111
2026-05-06 09:00:16 +09:00
parent 547dc58e8b
commit 162d9b2c2a
6 changed files with 72 additions and 8 deletions
@@ -132,24 +132,24 @@ groupVolumes: []
```bash
# 렌더링 미리보기 (실제 배포 없음)
helm template my-jupyter ./manifests/helm/jupyterlab \
-f ./manifests/helm/jupyterlab/custom-values.yaml
helm template my-jupyter ./manifests/helm/jupyterlab/1.0.0 \
-f ./manifests/helm/jupyterlab/1.0.0/custom-values.yaml
# 신규 설치
helm install my-jupyter ./manifests/helm/jupyterlab \
helm install my-jupyter ./manifests/helm/jupyterlab/1.0.0 \
--namespace jupyter \
--create-namespace \
-f ./manifests/helm/jupyterlab/custom-values.yaml
-f ./manifests/helm/jupyterlab/1.0.0/custom-values.yaml
# 업그레이드
helm upgrade my-jupyter ./manifests/helm/jupyterlab \
helm upgrade my-jupyter ./manifests/helm/jupyterlab/1.0.0 \
-n jupyter \
-f ./manifests/helm/jupyterlab/custom-values.yaml
-f ./manifests/helm/jupyterlab/1.0.0/custom-values.yaml
# 변경 사항 확인 (helm-diff 플러그인 필요)
helm diff upgrade my-jupyter ./manifests/helm/jupyterlab \
helm diff upgrade my-jupyter ./manifests/helm/jupyterlab/1.0.0 \
-n jupyter \
-f ./manifests/helm/jupyterlab/custom-values.yaml
-f ./manifests/helm/jupyterlab/1.0.0/custom-values.yaml
```
## 환경별 설정 예시