Defines GitOps application deployment that combines GitOps application with a particular set of values passed from the IaC code to the GitOps engine (e.g. ArgoCD).

interface GitOpsApplicationDeployment {
    name: string;
    namespace: undefined | string;
    repository?: GitRepositoryReference;
    values: Values;
}

Hierarchy (view full)

Properties

name: string
namespace: undefined | string
values: Values