@aws-cdk/asset-kubectl-v22
v0.0.3
Published
An Asset construct that contains kubectl, for use in Lambda Layers
Readme
Asset with KubeCtl v1.22
This library is currently under development. Do not use!
This module exports a single class called KubectlAsset which is an s3_assets.Asset that
bundles the kubectl and the
helm command line.
- Helm Version: 3.9.4
- Kubectl Version: 1.22.0
Usage:
// KubectlAsset bundles the 'kubectl' and 'helm' command lines
import { KubectlAsset } from '@aws-cdk/asset-kubectl-v22';
import * as lambda from 'aws-cdk-lib/aws-lambda';
declare const fn: lambda.Function;
const kubectl = new KubectlAsset(this, 'KubectlAsset');
fn.addLayers(new lambda.LayerVersion(this, 'KubectlLayer', {
code: lambda.Code.fromBucket(kubectl.bucket, kubectl.s3ObjectKey),
}));kubectl will be installed under /opt/kubectl/kubectl, and helm will be installed under /opt/helm/helm.
