Skip to content

Commit

Permalink
fix: downgrade eks version to V1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
pflorek committed May 7, 2022
1 parent f929872 commit 36e39bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class Cluster extends Construct implements ITaggable {
vpc: props.vpc,
mastersRole: this.mainRole,
clusterName: props.clusterName ?? "Cluster",
version: eks.KubernetesVersion.V1_22,
version: eks.KubernetesVersion.V1_21,
secretsEncryptionKey: props.secretsEncryptionKey,
defaultCapacityInstance: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MEDIUM),
tags: this.tags.renderedTags as unknown as { [key: string]: string },
Expand Down

0 comments on commit 36e39bb

Please sign in to comment.