ContainerCreating(2)
-
minikube에 ElasticSearch 설치
https://choco-life.tistory.com/54 Kubernetes에 ELK(Elasticsearch) 구축하기 #1 엘라스틱서치(Elasticsearch)는 분산형 RESTful 검색 및 분석 엔진으로 엘라스틱 스택(Elastic Stack)의 중심에 위치하고 있으며, 엘라스틱 스택은 차세대 데이터 플랫폼으로 자리 잡고 있습니다. Elastic Sta choco-life.tistory.com # elastic.yaml -------------------------------------- apiVersion: v1 kind: Namespace metadata: name: {namespace} --- apiVersion: v1 kind: ConfigMap metadata: namespace: ..
2024.02.04 -
pod의 상태가 ContainerCreating일 때 조치
# 대상 확인 kubectl get pods -A # 현재 상태 확인 kubectl describe pods {pod이름} -n {namespace}
2024.02.03