4 posts tagged with "aws"

k8s client 사용하기

Posted on June, 2020

클러스터 환경은 모두 구성이 되었다. 이제 해야할 일은 서버가 eks의 apiserver로 ns, deployment, svc, ingress를 생성하고, 진행과정을 요청보내는 일이다. kubectl 은 api server… Read full post

NLB와 Ingress

Posted on June, 2020

앞에서 pod와 svc를 배포하고 운영중인것을 확인했다. 클러스터 밖에서 요청을 보내기 위한 3가지 방법이 있다. 를 사용해서 인증된 접근하기 앞에서 사용한 방법으로, 테스트목적으로 파드의 포트를 연결하여 바로 접근하는 방법이다. API proxy… Read full post

EKS에 배포하기

Posted on May, 2020

이 앞에서 만든 echo server deployment와 svc를 kubectl을 사용해 배포한다. 다음은 포트 설정이다. 일부러 다르게 설정해서 잘 동작하는지 확인해보려한다. pod-port : 8080 svc-port : 9000 local-port : 8888 이렇게 하고 바로 svc ip나 kubernetes ip로 요청을 보내면 fail… Read full post

EKS 클러스터 구축하기 with Terraform

Posted on May, 2020

사용 aws 서비스 EKS 클러스터 t3.medium 2대 Preinstall terraform v 0.12.* kubectl aws-iam-authenticator 설치 및 설정 https://docs.aws.amazon.com/ko_kr/eks/latest/userguide/install-aws-iam-authenticator.html (option… Read full post