ks registry

Manage registries for current project

Synopsis

A ksonnet registry is basically a repository for packages. (Registry here is
used in the same sense as a container image registry). Registries are identified
by a registry.yaml in their root that declares which packages they contain.

Specifically, registries contain a set of versioned packages that the user can
install and manage in a given ksonnet app, using the CLI. A typical package contains:

  1. A library definining a set of “parts”. These are pre-fabricated API objects
    which can be combined together to configure a Kubernetes application for some task.
    (e.g. a Deployment, a Service, and a Secret, specifically tailored for Redis).

  2. A set of “prototypes”, which are pre-fabricated combinations of parts, as
    described above. (See ks prototype --help for more information.)


Options

  1. -h, --help help for registry

Options inherited from parent commands

  1. --dir string Ksonnet application root to use; Defaults to CWD
  2. --tls-skip-verify Skip verification of TLS server certificates
  3. -v, --verbose count Increase verbosity. May be given multiple times.

SEE ALSO