분류 전체보기(107)
-
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 -
Kubernetes Pod Warning: 1 node(s) had volume node affinity conflict
Kubernetes Pod Warning: 1 node(s) had volume node affinity conflict Kubernetes Pod Warning: 1 node(s) had volume node affinity conflict I try to set up Kubernetes cluster. I have Persistent Volume, Persistent Volume Claim and Storage class all set-up and running but when I wan to create pod from deployment, pod is created but it ha... stackoverflow.com Warning FailedScheduling 3m14s (x3 over 7m7..
2023.02.22