0.0.0-20230404142451 • Published 3 years ago

@kubernetes-models/kapp-controller v0.0.0-20230404142451

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@kubernetes-models/kapp-controller

Carvel kapp contoller models.

Installation

Install with npm.

npm install @kubernetes-models/kapp-controller

Usage

import { App } from "@kubernetes-models/kapp-controller/kappctrl.k14s.io/v1alpha1/App";

// Create a new Application
const app = new App({
  metadata: { name: "hello" },
  spec: {
    serviceAccountName: "default-ns-sa",
    fetch: [
      {
        git: {
          url: "https://github.com/vmware-tanzu/carvel-simple-app-on-kubernetes",
          ref: "origin/develop",
          subPath: "config-step-2-template"
        }
      }
    ],
    template: [{ ytt: {} }],
    deploy: [{ kapp: {} }]
  }
});

// Validate against JSON schema
app.validate();

License

See LICENSE

2.3.2

1 year ago

2.3.1

1 year ago

2.3.0

2 years ago

2.2.4

2 years ago

2.2.3

3 years ago

2.2.2

3 years ago

2.2.1

3 years ago

2.2.0

3 years ago

2.1.0

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.1.0

4 years ago

0.0.0

4 years ago