k8s #kubernetes 3

쿠버네티스 모니터링 툴 (kubernetes, k8s monitoring tools)

1. Goldpinger (골드핑거) 쿠버네티스 클러스터 시각화 툴 https://github.com/bloomberg/goldpinger GitHub - bloomberg/goldpinger: Debugging tool for Kubernetes which tests and displays connectivity between nodes in the cluster. Debugging tool for Kubernetes which tests and displays connectivity between nodes in the cluster. - GitHub - bloomberg/goldpinger: Debugging tool for Kubernetes which tests and displays conne..

kubernetes(k8s) Configmaps

Pod 정의 파일이 많을 경우 정의된 환경을 관리하기가 어렵게 됩니다. Configmap은 이를 조금더 효율적으로 관리하기 위해 사용합니다. Configmap정보를 Pod definition 파일에 주입하는 방식으로 Configmap은 중앙에서 관리/구성 할 수있습니다. * = 타입을 사용합니다. 1. Create ConfigMaps command cli kubectl create configmap --from-literal== declarative config-map.yaml apiVersion: v1 kind: ConfigMap metadata: name: app-config data: APP_COLOR: blue APP_MODE: prod 2. View ConfigMaps command cli ku..

Kubernetes(k8s) Summarize Commands

Kubernetes Summarize Commands * kubectl 커멘드 파라메터는 예시이니 적용 전 확인 Create (with yaml) kubectl create -f deployment-definition.yml Get kubectl get deployments Update kubectl apply -f deployment-definition.yml kubectl set image deployment/myapp-deployment nginx=nginx:1.10.1 Status kubectl rollout status deployment/myapp-deployment kubectl rollout history deployment/myapp-deployment Rollback kubectl ro..