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,24 @@
# kubectl edit
> Kubernetes 리소스를 편집.
> 더 많은 정보: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#edit>.
- Pod 편집:
`kubectl edit pod/{{pod_이름}}`
- Deployment 편집:
`kubectl edit deployment/{{deployment_이름}}`
- Service 편집:
`kubectl edit svc/{{service_이름}}`
- 특정 편집기를 사용하여 리소스 편집:
`KUBE_EDITOR={{nano}} kubectl edit {{resource}}/{{리소스_이름}}`
- JSON 형식으로 리소스 편집:
`kubectl edit {{resource}}/{{리소스_이름}} --output json`