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

fix: Bugfix for Kubectl v28/main - Updating helm to 3.14.4 #753

Open
wants to merge 2 commits into
base: kubectl-v28/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
2 changes: 1 addition & 1 deletion API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This module exports a single class called `KubectlV28Layer` 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.14.0
> - Helm Version: 3.14.4
> - Kubectl Version: 1.28.3
>

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.28.3
ARG HELM_VERSION=3.14.0
ARG HELM_VERSION=3.14.4

USER root
RUN mkdir -p /opt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"version": "20.0.0",
"files": {
"bdb2015ec68b53161d29e5910113dcb0b789ba26659fcfdcddddf8256bde19ef": {
"92982ff66471af3c95f8f46c1369f9ef85dbe2e8b7be65df91247faed40e05be": {
"source": {
"path": "asset.bdb2015ec68b53161d29e5910113dcb0b789ba26659fcfdcddddf8256bde19ef.zip",
"path": "asset.92982ff66471af3c95f8f46c1369f9ef85dbe2e8b7be65df91247faed40e05be.zip",
"packaging": "file"
},
"destinations": {
"current_account-current_region": {
"bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
"objectKey": "bdb2015ec68b53161d29e5910113dcb0b789ba26659fcfdcddddf8256bde19ef.zip",
"objectKey": "92982ff66471af3c95f8f46c1369f9ef85dbe2e8b7be65df91247faed40e05be.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 @@
}
}
},
"2eb36619c7130ec6c6d3b20cc4a61564c10cbab61c464356eba878419de02659": {
"527a4536921826e4186b201b7cb5ce2cb385f317a919d505a8d97f8161215f51": {
"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": "2eb36619c7130ec6c6d3b20cc4a61564c10cbab61c464356eba878419de02659.json",
"objectKey": "527a4536921826e4186b201b7cb5ce2cb385f317a919d505a8d97f8161215f51.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,9 +7,9 @@
"S3Bucket": {
"Fn::Sub": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}"
},
"S3Key": "bdb2015ec68b53161d29e5910113dcb0b789ba26659fcfdcddddf8256bde19ef.zip"
"S3Key": "92982ff66471af3c95f8f46c1369f9ef85dbe2e8b7be65df91247faed40e05be.zip"
},
"Description": "/opt/kubectl/kubectl 1.28; /opt/helm/helm 3.13",
"Description": "/opt/kubectl/kubectl 1.28; /opt/helm/helm 3.14",
"LicenseInfo": "Apache-2.0"
}
},
Expand Down
2 changes: 1 addition & 1 deletion test/kubectl-layer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test('synthesized to a layer version', () => {

// THEN
Template.fromStack(stack).hasResourceProperties('AWS::Lambda::LayerVersion', {
Description: '/opt/kubectl/kubectl 1.28; /opt/helm/helm 3.13',
Description: '/opt/kubectl/kubectl 1.28; /opt/helm/helm 3.14',
});
});

1,453 changes: 713 additions & 740 deletions yarn.lock

Large diffs are not rendered by default.