adb-*, co-*, cpdf, crackle, crictl: add Korean translation (#14085)

This commit is contained in:
HoJeong Im
2024-10-12 02:03:05 +09:00
committed by GitHub
parent 9baf249d01
commit efd167b4ae
12 changed files with 265 additions and 0 deletions

36
pages.ko/common/crictl.md Normal file
View File

@@ -0,0 +1,36 @@
# crictl
> CRI 호환 컨테이너 런타임을 위한 커멘드라인.
> 더 많은 정보: <https://github.com/kubernetes-sigs/cri-tools/blob/master/docs/crictl.md>.
- 모든 kubernetes 파드 나열 (준비 및 준비되지 않음):
`crictl pods`
- 모든 컨테이너 나열 (실행 중 및 종료):
`crictl ps --all`
- 모든 이미지 나열:
`crictl images`
- 특정 컨테이너들 정보 표시:
`crictl inspect {{컨테이너_아이디1 컨테이너_아이디2 ...}}`
- 실행 중인 컨테이너 내에서 특정 셸을 열기:
`crictl exec -it {{컨테이너_아이디}} {{sh}}`
- 레지스트리에서 특정 이미지를 가져옴:
`crictl pull {{이미지:태그}}`
- 특정 컨테이너의 로그를 출력하고 추적([f]ollow):
`crictl logs -f {{컨테이너_아이디}}`
- 하나 이상의 이미지를 제거:
`crictl rmi {{이미지_아이디1 이미지_아이디2 ...}}`