목록Devops/쿠버네티스 (5)
Kwoo'S Blog - IT는 어렵다.

저는 harbor/harbor Helm Chart를 사용하겠습니다. helm repo add harbor https://helm.goharbor.io helm search repo harbor NAME CHART VERSION APP VERSION DESCRIPTION bitnami/harbor 16.0.0 2.6.1 Harbor is an open source trusted cloud-native r... harbor/harbor 1.10.2 2.6.2 An open source trusted cloud native registry th... 공식 Git은 여길 참고하세요 https://github.com/goharbor/harbor-helm GitHub - goharbor/harbor-helm: Th..

KodeKloud - CKA - Network 정리 Service Networking What network range are the nodes in the cluster part of? 클러스터 노드가 속한 네트워크 범위는? kubectl get nodes -o wide What is the range of IP addresses configured for PODs on this cluster? 이 클러스터의 POD에 대해 구성된 IP 주소 범위는 무엇입니까? kubectl logs weave -n kube-system 어떤 cni 사용 중인지 확인 -> 위브니까 파드 로그로 확인 INFO: 2022/11/08 11:46:30.769131 adding entry 10.50.0.0/16 to weaver..

KodeKloud - CKA - Network 정리 Explore Environment How many nodes are part of this cluster? kubectl get nodes What is the Internal IP address of the controlplane node in this cluster? kubectl get nodes -o wide 클러스터를 구성하는 controlplane IP 주소는 그냥 -o wide 옵션으로 확인 What is the network interface configured for cluster connectivity on the controlplane node? kubectl get nodes -o wide ip addr 네트워크 인터페이스는 ip..

KodeKloud - CKA Storage 정리 app pod의 log 확인 kubectl exec webapp -- cat /log/app.log 호스트의 /var/log/webapp 경로에 로그를 저장하도록 볼륨 구성 apiVersion: v1 kind: Pod metadata: name: webapp spec: containers: - name: event-simulator image: kodekloud/event-simulator env: - name: LOG_HANDLERS value: file volumeMounts: - mountPath: /log name: log-volume volumes: - name: log-volume hostPath: # directory location on ho..