Skip to content

Use kustomize directories or URLs in your cdk8s projects

License

Notifications You must be signed in to change notification settings

spion/cdk8s-kustomize

Repository files navigation

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 URLs are supported by Kustomize

About

Use kustomize directories or URLs in your cdk8s projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published