Defines a GitOps generic application by combining a reference to a git repo and target namespace where it must be deployed.

interface GitOpsApplication {
    name: string;
    namespace: undefined | string;
    repository?: GitRepositoryReference;
}

Hierarchy (view full)

Properties

name: string
namespace: undefined | string