This commit is contained in:
ychangkim
2025-07-10 16:37:04 +09:00
parent 1af68f313c
commit 405955cbd0
4 changed files with 36 additions and 3 deletions
+6 -1
View File
@@ -29,9 +29,14 @@
| ---------------------- | ------------------------------------------------------------ | ------ |
| `nimService.name` | nim service 이름. | `meta-llama3-8b-instruct` |
| `nimService.existingAuthSecret` | nim service auth secret명. | |
| `nimService.existingPVC` | 기존 PVC 이름. 설정 시 기존 PVC를 사용하고, 비어있으면 새 PVC 생성 | `""` |
| `image.repository` | nim service model registry. | `nvcr.io/nim/meta/llama-3.2-3b-instruct` |
| `image.tag` | nim service model tag. | `1.8.3` |
| `imagePullSecrets.name` | nim service model secret 명. | `nvcrimagepullsecret` |
| `imagePullSecrets.registry` | nim model resistory. | `nvcr.io` |
| `imagePullSecrets.username` | nim model resistory username. | `$oauthtoken` |
| `imagePullSecrets.password` | nim model resistory password. | |
| `imagePullSecrets.password` | nim model resistory password. | |
| `nimService.storage.pvc.storageClass` | 새 PVC 생성 시 사용할 스토리지 클래스 (existingPVC가 비어있을 때 사용) | `longhorn` |
| `nimService.storage.pvc.size` | 새 PVC 생성 시 크기 (existingPVC가 비어있을 때 사용) | `30Gi` |
| `nimService.storage.pvc.volumeAccessMode` | 새 PVC 생성 시 접근 모드 (existingPVC가 비어있을 때 사용) | `ReadWriteMany` |
| `nimService.storage.readOnly` | PVC 읽기 전용 마운트 여부 (기존 PVC 사용 시 `true` 권장) | `false` |