Documentation ¶
Index ¶
Constants ¶
View Source
const RE_KUSTOMIZATION_API_VERSION = "(?P<version>" + RE_NOT_UNDERSCORE + ")"
View Source
const RE_KUSTOMIZATION_GROUP = "(?P<group>" + RE_NOT_UNDERSCORE + ")"
View Source
const RE_KUSTOMIZATION_ID = RE_KUSTOMIZATION_GROUP + "_" + RE_KUSTOMIZATION_API_VERSION + "_" + RE_KUSTOMIZATION_KIND + "\\|" + RE_KUSTOMIZATION_NAMESPACE + "\\|" + RE_KUSTOMIZATION_NAME
View Source
const RE_KUSTOMIZATION_KIND = "(?P<kind>" + RE_NOT_PIPE + ")"
View Source
const RE_KUSTOMIZATION_NAME = "(?P<name>" + RE_NOT_DQUOTE + ")"
View Source
const RE_KUSTOMIZATION_NAMESPACE = "(?P<namespace>" + RE_NOT_PIPE + ")"
View Source
const RE_NOT_DQUOTE = "[^\"]*"
View Source
const RE_NOT_PIPE = "[^|]*"
View Source
const RE_NOT_SLASH = "[^/]*"
View Source
const RE_NOT_UNDERSCORE = "[^_]*"
View Source
const RE_PROVIDER_GROUP = "(?P<group>" + RE_NOT_SLASH + ")"
View Source
const RE_PROVIDER_ID = RE_PROVIDER_GROUP + "/" + RE_PROVIDER_KIND + "/" + RE_PROVIDER_NAMESPACE + "/" + RE_PROVIDER_NAME
View Source
const RE_PROVIDER_KIND = "(?P<kind>" + RE_NOT_SLASH + ")"
View Source
const RE_PROVIDER_NAME = "(?P<name>" + RE_NOT_SLASH + ")"
View Source
const RE_PROVIDER_NAMESPACE = "(?P<namespace>" + RE_NOT_SLASH + ")"
Variables ¶
View Source
var KFILENAME string = "Kustomization"
Functions ¶
Types ¶
type Config ¶
type Config struct { Client dynamic.Interface Mapper *restmapper.DeferredDiscoveryRESTMapper Mutex *sync.Mutex // whether legacy IDs are produced or not LegacyIDs bool GzipLastAppliedConfig bool }
Config ...
Source Files ¶
Click to show internal directories.
Click to hide internal directories.