-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
- Helm Version: 3.15.1 - Kubectl Version: 1.30.0 (current version in [eks kubectl download page](https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html)) - deprecating `nodejs14.x` and bumps the cdkVersion to 2.85.0 which includes aws/aws-cdk#25995 - deprecating python3.7 from integ test Fixes #838
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,15 @@ import { NpmAccess } from 'projen/lib/javascript'; | |
import { WorkflowNoDockerPatch } from './projenrc/workflow-no-docker-patch'; | ||
|
||
// the version of k8s this branch supports | ||
const SPEC_VERSION = '29'; | ||
const SPEC_VERSION = '30'; | ||
const releaseWorkflowName = `release-kubectl-v${SPEC_VERSION}`; | ||
const defaultReleaseBranchName = `kubectl-v${SPEC_VERSION}/main`; | ||
|
||
const project = new awscdk.AwsCdkConstructLibrary({ | ||
projenrcTs: true, | ||
author: 'Amazon Web Services', | ||
authorAddress: '[email protected]', | ||
cdkVersion: '2.28.0', | ||
cdkVersion: '2.85.0', | ||
name: `@aws-cdk/lambda-layer-kubectl-v${SPEC_VERSION}`, | ||
description: `A Lambda Layer that contains kubectl v1.${SPEC_VERSION}`, | ||
repositoryUrl: 'https://github.com/cdklabs/awscdk-asset-kubectl.git', | ||
|