Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: helm upgrade to 3.17.0 #1539

Open
wants to merge 1 commit into
base: kubectl-v31/main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ This module exports a single class called `KubectlV31Layer` which is a `lambda.L
bundles the [`kubectl`](https://kubernetes.io/docs/reference/kubectl/kubectl/) and the
[`helm`](https://helm.sh/) command line.

> - Helm Version: 3.16.1
> - Helm Version: 3.17.0
> - Kubectl Version: 1.31.0
>

Usage:

```ts
// KubectlLayer bundles the 'kubectl' and 'helm' command lines
import { KubectlV31Layer } from '@aws-cdk/lambda-layer-kubectl-v29';
import { KubectlV31Layer } from '@aws-cdk/lambda-layer-kubectl-v31';
import * as lambda from 'aws-cdk-lib/aws-lambda';

declare const fn: lambda.Function;
Expand Down
2 changes: 1 addition & 1 deletion layer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM public.ecr.aws/lambda/provided:latest
#

ARG KUBECTL_VERSION=1.31.0
ARG HELM_VERSION=3.16.1
ARG HELM_VERSION=3.17.0

USER root
RUN mkdir -p /opt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"version": "34.0.0",
"files": {
"f3c812b299b0759c937b41e39d3451f5cc61279c2ec9ee791fac08ba1e56508b": {
"92de4f0850ca1327781e1e19c8ad80951f01ab1b499c91f8d0fb8b3e7bf5b895": {
"source": {
"path": "asset.f3c812b299b0759c937b41e39d3451f5cc61279c2ec9ee791fac08ba1e56508b.zip",
"path": "asset.92de4f0850ca1327781e1e19c8ad80951f01ab1b499c91f8d0fb8b3e7bf5b895.zip",
"packaging": "file"
},
"destinations": {
"current_account-current_region": {
"bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
"objectKey": "f3c812b299b0759c937b41e39d3451f5cc61279c2ec9ee791fac08ba1e56508b.zip",
"objectKey": "92de4f0850ca1327781e1e19c8ad80951f01ab1b499c91f8d0fb8b3e7bf5b895.zip",
"assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-file-publishing-role-${AWS::AccountId}-${AWS::Region}"
}
}
Expand Down Expand Up @@ -40,15 +40,15 @@
}
}
},
"7ea6685a38548ef8f66ea72b5829b3a6ba4ea5498b30c28001dbd94f984f9e9a": {
"e53acf4b865ecb5c2cd992b7d51256c28e6bf16507079880e6c1fcc1a2c20f7c": {
"source": {
"path": "lambda-layer-kubectl-integ-stack.template.json",
"packaging": "file"
},
"destinations": {
"current_account-current_region": {
"bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
"objectKey": "7ea6685a38548ef8f66ea72b5829b3a6ba4ea5498b30c28001dbd94f984f9e9a.json",
"objectKey": "e53acf4b865ecb5c2cd992b7d51256c28e6bf16507079880e6c1fcc1a2c20f7c.json",
"assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-file-publishing-role-${AWS::AccountId}-${AWS::Region}"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"S3Bucket": {
"Fn::Sub": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}"
},
"S3Key": "f3c812b299b0759c937b41e39d3451f5cc61279c2ec9ee791fac08ba1e56508b.zip"
"S3Key": "92de4f0850ca1327781e1e19c8ad80951f01ab1b499c91f8d0fb8b3e7bf5b895.zip"
},
"Description": "/opt/kubectl/kubectl 1.31.0; /opt/helm/helm 3.16.1",
"LicenseInfo": "Apache-2.0"
Expand Down
Loading