Skip to content

Commit

Permalink
add more 1.30 and 1.31 clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
roystchiang committed Jan 14, 2025
1 parent cfcb7db commit 3effcd4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions cdk_infra/lib/config/cluster-config/clusters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@ clusters:
launch_type: ec2
instance_type: m6g.large
cert_manager: true
- name: java-instrumentation-operator-ci-arm64-1-30
version: "1.30"
launch_type: ec2
instance_type: m6g.large
cert_manager: true
- name: java-instrumentation-operator-ci-arm64-1-31
version: "1.31"
launch_type: ec2
instance_type: m6g.large
cert_manager: true
# operator test clusters
- name: operator-ci-amd64-1-24
version: "1.24"
Expand Down Expand Up @@ -129,3 +139,23 @@ clusters:
launch_type: ec2
instance_type: m6g.large
cert_manager: true
- name: operator-ci-amd64-1-30
version: "1.30"
launch_type: ec2
instance_type: m5.large
cert_manager: true
- name: operator-ci-arm64-1-30
version: "1.30"
launch_type: ec2
instance_type: m6g.large
cert_manager: true
- name: operator-ci-amd64-1-31
version: "1.31"
launch_type: ec2
instance_type: m5.large
cert_manager: true
- name: operator-ci-arm64-1-31
version: "1.31"
launch_type: ec2
instance_type: m6g.large
cert_manager: true
2 changes: 1 addition & 1 deletion cdk_infra/lib/utils/eks/validate-interface-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ec2ClusterInterface } from '../../interfaces/eks/ec2cluster-interface';
const validateSchema = require('yaml-schema-validator');

const supportedLaunchTypes = new Set(['fargate', 'ec2']);
const supportedVersions = new Set(['1.24', '1.25', '1.26', '1.27']);
const supportedVersions = new Set(['1.24', '1.25', '1.26', '1.27', '1.30', '1.31']);
const supportedCPUArchitectures = new Set(['m5', 'm6g', 't4g']);
const supportedNodeSizes = new Set([
'medium',
Expand Down

0 comments on commit 3effcd4

Please sign in to comment.