hcloud, hd, he*: add Korean translation (#14517)

This commit is contained in:
HoJeong Im
2024-11-02 22:14:52 +09:00
committed by GitHub
parent c5d694b17a
commit 916a7d963d
13 changed files with 298 additions and 0 deletions

37
pages.ko/common/helm.md Normal file
View File

@@ -0,0 +1,37 @@
# helm
> Kubernetes 패키지 관리자.
> `install`과 같은 하위 명령어에는 자체 사용법 문서가 있음.
> 더 많은 정보: <https://helm.sh/>.
- helm 차트 생성:
`helm create {{차트_이름}}`
- 새로운 helm 레포지토리를 추가:
`helm repo add {{레포지토리_이름}}`
- helm 레포지토리 나열:
`helm repo list`
- helm 레포지토리 업데이트:
`helm repo update`
- helm 레포지토리 삭제:
`helm repo remove {{레포지토리_이름}}`
- helm 차트 설치:
`helm install {{이름}} {{레포지토리_이름}}/{{차트_이름}}`
- tar 아카이브로 helm 차트 다운로드:
`helm get {{차트_배포_이름}}`
- helm 종속성 업데이트:
`helm dependency update`