cdk8s-kustomize

Use kustomize directories in your cdk8s projects

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
cdk8s-kustomize
110.0.47 months ago9 months agoMinified + gzip package size for cdk8s-kustomize in KB

Readme

cdk8s-kustomize
Use kustomize directories in your cdk8s projects
To use this you must have kubectl installed on your system.
class MyChart extends cdk8s.Chart {
  constructor(scope: Construct, id: string) {
    super(scope, id);

    const myKustomizeDir = new Kustomize(this, 'postgres-operator-install', {
      url: 'https://github.com/CrunchyData/postgres-operator-examples//kustomize/install/default?ref=12085b73c85f3c30f0a0b1d3f5fe17b22c3eede3'
    });
  }
}

GoGetter URLs1 are supported by Kustomize2