728x90 IT Tech/Cloud Native65 [CKA] Logs # 로그 조회 kubectl logs -f 2022. 3. 15. [CKA] Monitor Cluster Components # 리소스 사용 모니터 명령어 kubectl top pop kubectl top node 2022. 3. 15. [CKA] Multiple Scheduler # scheduler 조회 명령 kubectl edit pod --namespace=kube-system kubectl edit pod kube-scheduler-controlplane --namespace=kube-system # Doc https://kubernetes.io/docs/tasks/extend-kubernetes/configure-multiple-schedulers/ Configure Multiple Schedulers Kubernetes ships with a default scheduler that is described here. If the default scheduler does not suit your needs you can implement your own scheduler.. 2022. 3. 12. [CKA] Container Storage Interface(CSI) 컨테이너 환경의 스토리지에 Access 하기위해 CNCF에서 개발한 표준 Contianer Orchestration System과 Storage를 제어하는 plugin 사이의 Interface를 의미 2022. 3. 12. [CKA] Persistent Storage 여러 개의 pod들이 함께 사용하는 저장공간으로 Cloud나 스토리지 같은 영구적인 저장공간 # 구성요소 - PersistenctVolume(PV) apiVersion: v1 kind: PersistentVolume metadata: name: pv0003 spec: capacity: storage: 5Gi volumeMode: Filesystem accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Recycle storageClassName: slow mountOptions: - hard - nfsvers=4.1 nfs: path: /tmp server: 172.17.0.2 - PersistentVolumentClaim(PVC) apiVersion.. 2022. 3. 12. 이전 1 ··· 5 6 7 8 9 10 11 ··· 13 다음 반응형