Options for a FluxCD GitRepository path and name parameter within repository parameter do not have any affect in flux, may have an affect in argo

interface FluxGitRepo {
    kustomizations?: FluxKustomizationProps[];
    name: string;
    namespace: undefined | string;
    repository: GitRepositoryReference;
    secretRefName?: string;
    syncInterval?: string;
    values: Values;
}

Hierarchy

Properties

kustomizations?: FluxKustomizationProps[]

List of kustomizations to create from different paths in repo

name: string
namespace: undefined | string
secretRefName?: string

Flux SecretRef

syncInterval?: string

Internal for Flux sync. Default 5m0s

values: Values