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,28 @@
# kubectl create
> 파일 또는 `stdin`에서 리소스를 생성.
> 더 많은 정보: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#create>.
- 리소스 정의 파일을 사용하여 리소스 생성:
`kubectl create -f {{경로/대상/파일.yml}}`
- `stdin`에서 리소스 생성:
`kubectl create -f -`
- 배포 생성:
`kubectl create deployment {{배포_이름}} --image={{이미지}}`
- 복제본과 함께 배포 생성:
`kubectl create deployment {{배포_이름}} --image={{이미지}} --replicas={{복제본_수}}`
- 서비스 생성:
`kubectl create service {{서비스_유형}} {{서비스_이름}} --tcp={{포트}}:{{대상_포트}}`
- 네임스페이스 생성:
`kubectl create namespace {{네임스페이스_이름}}`