관리 메뉴

피터의 개발이야기

[AWS] Amazon EKS 쿠버네티스 버전 확인 본문

DevOps

[AWS] Amazon EKS 쿠버네티스 버전 확인

기록하는 백앤드개발자 2022. 5. 13. 15:10
반응형

 

ㅁ 개요

 ㅇ AWS에서 Amazon EKS 업데이트 메일을 하나 받았다. 현재의 쿠버네티스 버젼 확인 과정을 기록한다.

 

ㅁ AWS 메일 내용

English follows Korean | 한국어버전 뒤에 영어버전이 있습니다

 안녕하세요,

Amazon EKS는 쿠버네티스 버전 1.19를 더 이상 지원하지 않으며 이 버전은 2022년 6월 30일부터 더 이상 지원되지 않습니다. 2022년 6월 30일부터 더 이상 새로운 1.19 클러스터를 생성할 수 없으며, 쿠버네티스 버전 1.19를 실행하는 모든 EKS 클러스터는 쿠버네티스 버전 1.20의 최신 플랫폼 버전으로 업데이트될 것입니다.
 

현재 쿠버네티스 버전 1.19에서 실행 중인 하나 이상의 EKS 클러스터가 있기 때문에 이 메시지가 표시됩니다.

AP-NORTHEAST-2 리전의 영향을 받는 EKS 클러스터는 다음과 같습니다:
arn:aws:eks:ap-northeast-2:~~~~_EKS_CLUSTER

저희는 1.19 클러스터를 쿠버네티스 버전 1.20 이상으로 업데이트하시기를 권해드립니다. 클러스터를 지원되는 최신 Kubernetes 버전(버전 1.22)으로 업데이트하여 버전 업그레이드를 수행해야 하는 빈도를 최소화할 수 있습니다. 최신 Kubernetes 버전 (버전 1.22) 으로 고객님의 클러스터 버전을 업데이트하여 버전 업그레이드를 수행해야 하는 빈도를 최소화하실 수 있습니다.
 

쿠버네티스 버전 지원에 대한 자세한 내용은 Amazon EKS 서비스 설명서 [1] 를 참조하십시오.
클러스터를 업데이트하는 방법에 대한 지침은 Amazon EKS 서비스 설명서 [2] 를 참조하십시오.

질문이나 우려 사항이 있는 경우 AWS Support [3] 에 문의하십시오.

[1] https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
[2] https://docs.aws.amazon.com/eks/latest/userguide/update-cluster.html
[3] https://aws.amazon.com/support

---

Hello,
Amazon EKS has deprecated Kubernetes version 1.19 and this version will no longer be supported as of June 30, 2022. As of June 30, 2022, you will no longer be able to create new 1.19 clusters and all EKS clusters running Kubernetes version 1.19 will be updated to the latest available platform version of Kubernetes version 1.20.

You are receiving this message because you currently have 1 or more EKS clusters running with Kubernetes version 1.19.
Your impacted EKS cluster(s) in the AP-NORTHEAST-2 Region are the following:

arn:aws:eks:ap-northeast-2:~~~~_EKS_CLUSTER

We recommend that you update your 1.19 clusters to Kubernetes version 1.20 or higher. You can minimize the frequency at which you need to perform version upgrades by updating your cluster up to the latest supported Kubernetes version, which is version 1.22.

To learn more on Kubernetes version support, refer to the Amazon EKS service documentation [1].
For instructions on how to update your cluster(s), refer to the Amazon EKS service documentation [2].
If you have any questions or concerns, please reach out to AWS Support [3].
[1] https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
[2] https://docs.aws.amazon.com/eks/latest/userguide/update-cluster.html
[3] https://aws.amazon.com/support

Sincerely,

Amazon Web Services

 

ㅁ GW의 EKS 버젼확인

# 개발계
[ec2-user@DEV-PRI-BASTION ~]$ kubectl version --client
Client Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.4-eks-6b7464", GitCommit:"", GitTreeState:"clean", BuildDate:"2021-03-19T19:35:50Z", GoVersion:"go1.15.8", Compiler:"gc", Platform:"linux/amd64"}
# 검수계
[ec2-user@STG-PRI-BASTION ~]$ kubectl version --client
Client Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.4-eks-6b7464", GitCommit:"", GitTreeState:"clean", BuildDate:"2021-03-19T19:35:50Z", GoVersion:"go1.15.8", Compiler:"gc", Platform:"linux/amd64"}



# 운영계

[ec2-user@PRD-PRI-BASTION ilovefran]$ kubectl version --client
Client Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.4-eks-6b7464", GitCommit:"", GitTreeStat


 

반응형
Comments