Data type defining helm repositories for GitOps bootstrapping.

interface HelmRepository {
    name: string;
    password?: string;
    repoUrl: string;
    username?: string;
}

Properties

name: string
password?: string
repoUrl: string
username?: string