Skip to content

Commit

Permalink
fix: use v1beta1 version in EKS user kubeconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoshkin authored and k8s-infra-cherrypick-robot committed Oct 7, 2022
1 parent 3cef5f2 commit 7d79e43
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/cloud/services/eks/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,11 @@ func (s *Service) createUserKubeconfigSecret(ctx context.Context, cluster *eks.C
return fmt.Errorf("creating base kubeconfig: %w", err)
}

execConfig := &api.ExecConfig{APIVersion: "client.authentication.k8s.io/v1alpha1"}
// Version v1alpha1 was removed in Kubernetes v1.23.
// Version v1 was released in Kubernetes v1.23.
// Version v1beta1 was selected as it has the widest range of support
// This should be changed to v1 once EKS no longer supports Kubernetes <v1.23
execConfig := &api.ExecConfig{APIVersion: "client.authentication.k8s.io/v1beta1"}
switch s.scope.TokenMethod() {
case ekscontrolplanev1.EKSTokenMethodIAMAuthenticator:
execConfig.Command = "aws-iam-authenticator"
Expand Down

0 comments on commit 7d79e43

Please sign in to comment.