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 replace
> 파일 또는 `stdin`을 통해 리소스를 교체.
> 더 많은 정보: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#replace>.
- 리소스 정의 파일을 사용하여 리소스 교체:
`kubectl replace -f {{경로/대상/파일.yml}}`
- `stdin`으로 전달된 입력을 사용하여 리소스 교체:
`kubectl replace -f -`
- 강제로 교체: 리소스를 삭제한 후 다시 생성:
`kubectl replace --force -f {{경로/대상/파일.yml}}`