kube*, kustomize: add Korean translation (#14491)

This commit is contained in:
코드싸이
2024-10-31 16:38:19 +09:00
committed by GitHub
parent dbfe659054
commit 0a3de53152
23 changed files with 554 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# kubectl scale
> 배포, 레플리카 세트, 복제 컨트롤러 또는 스테이트풀 세트의 크기를 조정.
> 더 많은 정보: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#scale>.
- 레플리카 세트 크기 조정:
`kubectl scale --replicas={{레플리카_수}} rs/{{레플리카_이름}}`
- 파일로 식별된 리소스 크기 조정:
`kubectl scale --replicas={{레플리카_수}} -f {{경로/대상/파일.yml}}`
- 현재 레플리카 수를 기준으로 배포 크기 조정:
`kubectl scale --current-replicas={{현재_레플리카_수}} --replicas={{레플리카_수}} deployment/{{배포_이름}}`