Package version:

The postBuild definitions defining variable substitutions for this Kustomization after kustomize build.

interface PostBuildPatchDefinition {
    substitute?: {
        [propertyName: string]: string;
    };
    substituteFrom?: (null | SubstituteFromPatchDefinition)[];
}

Properties

substitute?: {
    [propertyName: string]: string;
}

Key/value pairs holding the variables to be substituted in this Kustomization.

substituteFrom?: (null | SubstituteFromPatchDefinition)[]

Array of ConfigMaps/Secrets from which the variables are substituted for this Kustomization.