분류 전체보기(114)
-
컨피그레이션 드리프트란? Configuration Drift
컨피그레이션 드리프트 Configuration Drift란? 번역하면 설정 드리프트, 구성 드리프트라고도 나옵니다. Configuration Drift(컨피그레이션 드리프트)는 시간이 흐르면서 시스템이나 애플리케이션, 서버, 인프라, 하드웨어 등의 실제 구성(옵션, 설정, configuration)이 의도하거나 원하는 구성과 달라지는 현상을 말합니다. 이는 소프트웨어 업데이트, 사용자나 관리자에 의한 변경, 하드웨어 오류 또는 네트워크 문제 등 다양한 요인으로 인해 발생합니다. 시스템이나 애플리케이션을 처음 설정할 때는 일반적으로 특정 요구 사항이나 표준을 충족하도록 구성됩니다. 이 구성에는 보안, 성능, 호환성 또는 시스템이 제대로 작동하는 데 중요한 요소와 태그 등 작동과는 상관 없는 설정이 포함될 ..
2023.04.25 -
find log where string does not exist, with grep -iv
How can I find specific lines where string does not exist without case with grep commands. grep -iv Search a string without case sensitivity grep -i "string" Select a line where no matching pattern exists grep -v "string" Select lines where "string" does not exist, regardless of case grep -iv "string" For example, How can I find which shard's state is not started in ElasticSearch with catAPI cur..
2023.04.25 -
AWS EKS에 ALB를 이용해 여러 서비스 연결하기
이 글은 AWS EKS에서 한 개의 로드밸런서(ALB)에 여러 서비스를 연결하는 방법을 설명합니다. One LoadBalancer - Multi Service (Application) AWS EKS 클러스터 생성과 AWS Load Balancer Controller 설치는 이전 글을 참고하세요. https://nauco.tistory.com/89 EKS에 CLB, NLB, ALB 만들기, AWS Load Balancer Controller 사용 AWS EKS에서 AWS Load Balancer Controller를 사용해 CLB(Classic Load Balancer), NLB(Network Load Balancer), ALB(Application Load Balancer)를 만들어 보겠습니다. AWS ..
2023.04.22 -
EKS에 CLB, NLB, ALB 만들기, AWS Load Balancer Controller 사용
AWS EKS에서 AWS Load Balancer Controller를 사용해 CLB(Classic Load Balancer), NLB(Network Load Balancer), ALB(Application Load Balancer)를 만들어 보겠습니다. AWS Load Balancer Controller란? Elastic Load Balancer를 Kubernetes cluster에서 관리하도록 도와주는 컨트롤러 전에는 AWS ALB Ingress Controller 라는 이름으로 불렸으며 지금은 AWS Load Balancer Controller라는 이름으로 변경했습니다. 크게 두 가지 기능을 합니다. 1. Kubernetes Ingress 리소스에서 Application Load Balancer를 ..
2023.04.09 -
Kubernetes Dashboard Token Expired Issue
This article describes an error that occurs when installing the Kubernetes dashboard on Kubernetes 1.24 and how to fix it. 1. Error getting a token to log in to kube-dashboard As of Kubernetes 1.24, creating a service account does not generate a token as secret. What happend kubectl get sa token to login dashboard error: error executing template "{{.data.token | base64decode}}": template: output..
2023.03.21 -
eksctl pods are unevictable from node 에러 해결하기
aws eks를 eksctl로 구성한 eks를 delete 하던 중 1 pods are unevictable from node ip-192-168-49-32.ap-northeast-2.compute.internal 에러가 발생해서 클러스터 삭제가 안되는 상황 검색해보니 poddisruptionbudget 을 지워주면 된다고 합니다. https://veducate.co.uk/delete-eks-fails-cannot-evict-pod/
2023.02.28