0.1.1 • Published 2 years ago

@opencdk8s/cdk8s-sealed-secrets-controller v0.1.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

cdk8s-sealed-secrets-controller

Extends APIObjects for sealed secrets controller.

Usage:

import { Construct } from 'constructs';
import { App, Chart, ChartProps } from 'cdk8s';
import { SealedSecretsTemplate } from '@opencdk8s/cdk8s-sealed-secrets-controller';

export class MyChart extends Chart {
  constructor(scope: Construct, id: string, props: ChartProps = { }) {
    super(scope, id, props);
      new SealedSecretsTemplate(this, 'example', {});
    }
}

const app = new App();
new MyChart(app, 'example');
app.synth();
0.1.0

2 years ago

0.1.1

2 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago