forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into merge-back/2.134.0
- Loading branch information
Showing
35 changed files
with
7,586 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 11 additions & 3 deletions
14
...ages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ-tests-kubernetes-version.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
import * as lambda from 'aws-cdk-lib/aws-lambda'; | ||
import { KubectlV24Layer } from '@aws-cdk/lambda-layer-kubectl-v24'; | ||
import { KubectlV29Layer } from '@aws-cdk/lambda-layer-kubectl-v29'; | ||
import { Construct } from 'constructs'; | ||
import * as eks from 'aws-cdk-lib/aws-eks'; | ||
|
||
export function getClusterVersionConfig(scope: Construct) { | ||
const versionMap: { [key: string]: any } = { | ||
1.24: KubectlV24Layer, | ||
1.29: KubectlV29Layer, | ||
}; | ||
|
||
export function getClusterVersionConfig(scope: Construct, version?: eks.KubernetesVersion) { | ||
const _version = version ?? eks.KubernetesVersion.V1_24; | ||
return { | ||
version: eks.KubernetesVersion.V1_24, | ||
version: _version, | ||
// Crazy type-casting is required because KubectlLayer peer depends on | ||
// types from aws-cdk-lib, but we run integration tests in the @aws-cdk/ | ||
// v1-style directory, not in the aws-cdk-lib v2-style directory. | ||
kubectlLayer: new KubectlV24Layer(scope, 'KubectlLayer') as unknown as lambda.ILayerVersion, | ||
// kubectlLayer: new KubectlV24Layer(scope, 'KubectlLayer') as unknown as lambda.ILayerVersion, | ||
kubectlLayer: new versionMap[_version.version](scope, 'KubectlLayer') as unknown as lambda.ILayerVersion, | ||
}; | ||
}; |
95 changes: 95 additions & 0 deletions
95
.../asset.1471fa6f2876749a13de79989efc6651c9768d3173ef5904947e87504f8d7069/apply/__init__.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.