schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
config.json
versionfilter
versionfilter provides parameters to specify the version pattern used when generating manifest. kind - semver versionfilter of kind `semver` uses semantic versioning as version filtering pattern accepts one of: `patch` - patch only update patch version `minor` - minor only update minor version `major` - major only update major versions `a version constraint` such as `>= 1.0.0` kind - regex versionfilter of kind `regex` uses regular expression as version filtering pattern accepts a valid regular expression example: ``` versionfilter: kind: semver pattern: minor ``` and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
versionincrement
[target] Defines if a Chart changes, triggers, or not, a Chart version update, accepted values is a comma separated list of "none,major,minor,patch"
{"type": "string"}
config.json
helmfile
Spec defines the Helmfile parameters.
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}
config.json
rootdir
rootdir defines the root directory used to recursively search for Helmfile manifest
{"type": "string"}
config.json
ignore
Ignore allows to specify rule to ignore "autodiscovery" a specific Helmfile based on a rule
{"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
path
Path specifies a Helmfile chart path pattern, the pattern requires to match all of name, not just a subpart of the path.
{"type": "string"}
config.json
only
Only allows to specify rule to only "autodiscovery" manifest for a specific Helmfile based on a rule
{"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
path
Path specifies a Helmfile chart path pattern, the pattern requires to match all of name, not just a subpart of the path.
{"type": "string"}
config.json
auths
Auths provides a map of registry credentials where the key is the registry URL without scheme
{"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}
config.json
.*
InlineKeyChain defines a keychain with OCI registry credentials
{"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
username
username specifies the container registry username to use for authentication. compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with token
{"type": "string"}
config.json
password
password specifies the container registry password to use for authentication. Not compatible with token compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with token
{"type": "string"}
config.json
token
token specifies the container registry token to use for authentication. compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with username/password
{"type": "string"}
config.json
versionfilter
versionfilter provides parameters to specify the version pattern used when generating manifest. kind - semver versionfilter of kind `semver` uses semantic versioning as version filtering pattern accepts one of: `patch` - patch only update patch version `minor` - minor only update minor version `major` - major only update major versions `a version constraint` such as `>= 1.0.0` kind - regex versionfilter of kind `regex` uses regular expression as version filtering pattern accepts a valid regular expression example: ``` versionfilter: kind: semver pattern: minor ``` and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
cargo
Spec defines the Cargo parameters.
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "registries": {"patternProperties": {".*": {"properties": {"auth": {"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "url": {"type": "string"}, "rootdir": {"type": "string"}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}
config.json
rootdir
RootDir defines the root directory used to recursively search for Cargo.toml
{"type": "string"}
config.json
ignore
Ignore specifies rule to ignore Cargo.toml update.
{"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
path
Path specifies a Cargo crate path pattern, the pattern requires to match all of name, not just a subpart of the path.
{"type": "string"}
config.json
only
Only specify required rule to restrict Cargo.toml update.
{"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
path
Path specifies a Cargo crate path pattern, the pattern requires to match all of name, not just a subpart of the path.
{"type": "string"}
config.json
registries
Auths provides a map of registry credentials where the key is the registry URL without scheme
{"patternProperties": {".*": {"properties": {"auth": {"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "url": {"type": "string"}, "rootdir": {"type": "string"}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}
config.json
auth
[A][S][C] Auth specifies the cargo registry auth to use for authentication.
{"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
token
[A][S][C] Token specifies the cargo registry token to use for authentication.
{"type": "string"}
config.json
headerformat
[A][S][C] HeaderFormat specifies the cargo registry header format to use for authentication (defaults to `Bearer`).
{"type": "string"}
config.json
url
[A][S][C] URL specifies the cargo registry URL to use for authentication.
{"type": "string"}
config.json
rootdir
[A][S][C] RootDir specifies the cargo registry root directory to use as FS index.
{"type": "string"}
config.json
scmid
[A] SCMID specifies the cargo registry scmId to use as FS index.
{"type": "string"}
config.json
versionfilter
`versionfilter` provides parameters to specify the version pattern to use when generating manifest. kind - semver versionfilter of kind `semver` uses semantic versioning as version filtering pattern accepts one of: `patch` - patch only update patch version `minor` - minor only update minor version `major` - major only update major versions `a version constraint` such as `>= 1.0.0` kind - regex versionfilter of kind `regex` uses regular expression as version filtering pattern accepts a valid regular expression example: ``` versionfilter: kind: semver pattern: minor ``` and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
dockercompose
Spec is a struct fill from Updatecli manifest data and shouldn't be modified at runtime unless For Fields that requires it, we can use the struct DockerCompose Spec defines the parameters which can be provided to the Helm builder.
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}
config.json
rootdir
RootDir defines the root directory used to recursively search for Helm Chart
{"type": "string"}
config.json
ignore
Ignore allows to specify rule to ignore autodiscovery a specific Helm based on a rule
{"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}
config.json
archs
Arch specifies a list of docker image architecture
{"items": {"type": "string"}, "type": "array"}
config.json
path
Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a substring.
{"type": "string"}
config.json
services
Services specifies a list of docker compose services
{"items": {"type": "string"}, "type": "array"}
config.json
images
Image specifies a list of docker image
{"items": {"type": "string"}, "type": "array"}
config.json
only
Only allows to specify rule to only autodiscover manifest for a specific Helm based on a rule
{"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}
config.json
archs
Arch specifies a list of docker image architecture
{"items": {"type": "string"}, "type": "array"}
config.json
path
Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a substring.
{"type": "string"}
config.json
services
Services specifies a list of docker compose services
{"items": {"type": "string"}, "type": "array"}
config.json
images
Image specifies a list of docker image
{"items": {"type": "string"}, "type": "array"}
config.json
auths
Auths provides a map of registry credentials where the key is the registry URL without scheme
{"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}
config.json
.*
InlineKeyChain defines a keychain with OCI registry credentials
{"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
username
username specifies the container registry username to use for authentication. compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with token
{"type": "string"}
config.json
password
password specifies the container registry password to use for authentication. Not compatible with token compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with token
{"type": "string"}
config.json
token
token specifies the container registry token to use for authentication. compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with username/password
{"type": "string"}
config.json
filematch
FileMatch allows to override default docker-compose.yaml file matching. Default ["docker-compose.yaml","docker-compose.yml","docker-compose.*.yaml","docker-compose.*.yml"]
{"items": {"type": "string"}, "type": "array"}
config.json
versionfilter
versionfilter provides parameters to specify the version pattern used when generating manifest. kind - semver versionfilter of kind `semver` uses semantic versioning as version filtering pattern accepts one of: `patch` - patch only update patch version `minor` - minor only update minor version `major` - major only update major versions `a version constraint` such as `>= 1.0.0` kind - regex versionfilter of kind `regex` uses regular expression as version filtering pattern accepts a valid regular expression example: ``` versionfilter: kind: semver pattern: minor ``` and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
dockerfile
Spec is a struct fill from Updatecli manifest data and shouldn't be modified at runtime unless For Fields that requires it, we can use the struct Dockerfile Spec defines the parameters which can be provided to the Dockerfile crawler.
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}
config.json
rootdir
RootDir defines the root directory used to recursively search for Helm Chart
{"type": "string"}
config.json
ignore
Ignore allows to specify rule to ignore autodiscovery a specific Helm based on a rule
{"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}
config.json
archs
Arch specifies a list of docker image architecture
{"items": {"type": "string"}, "type": "array"}
config.json
path
Path specifies a Dockerfile path pattern, the pattern requires to match all of name, not just a substring.
{"type": "string"}
config.json
images
Image specifies a list of docker image
{"items": {"type": "string"}, "type": "array"}
config.json
only
Only allows to specify rule to only autodiscover manifest for a specific Helm based on a rule
{"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}
config.json
archs
Arch specifies a list of docker image architecture
{"items": {"type": "string"}, "type": "array"}
config.json
path
Path specifies a Dockerfile path pattern, the pattern requires to match all of name, not just a substring.
{"type": "string"}
config.json
images
Image specifies a list of docker image
{"items": {"type": "string"}, "type": "array"}
config.json
auths
Auths provides a map of registry credentials where the key is the registry URL without scheme
{"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}
config.json
.*
InlineKeyChain defines a keychain with OCI registry credentials
{"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
username
username specifies the container registry username to use for authentication. compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with token
{"type": "string"}
config.json
password
password specifies the container registry password to use for authentication. Not compatible with token compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with token
{"type": "string"}
config.json
token
token specifies the container registry token to use for authentication. compatible: * source * condition * target default: by default credentials are fetch from the local environment such as `~/.docker/config.json`. remark: Not compatible with username/password
{"type": "string"}
config.json
filematch
FileMatch allows to override default Dockerfile file matching. Default ["Dockerfile"]
{"items": {"type": "string"}, "type": "array"}
config.json
versionfilter
versionfilter provides parameters to specify the version pattern used when generating manifest. kind - semver versionfilter of kind `semver` uses semantic versioning as version filtering pattern accepts one of: `patch` - patch only update patch version `minor` - minor only update minor version `major` - major only update major versions `a version constraint` such as `>= 1.0.0` kind - regex versionfilter of kind `regex` uses regular expression as version filtering pattern accepts a valid regular expression example: ``` versionfilter: kind: semver pattern: minor ``` and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
maven
Spec defines the parameters which can be provided to the Helm builder.
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}
config.json
rootdir
RootDir defines the root directory used to recursively search for Helm Chart
{"type": "string"}
config.json
ignore
Ignore allows to specify rule to ignore autodiscovery a specific Helm based on a rule
{"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
path
Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a substring.
{"type": "string"}
config.json
only
Only allows to specify rule to only autodiscover manifest for a specific Helm based on a rule
{"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
MatchingRule allows to specifies rules to identify manifest
{"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
path
Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a substring.
{"type": "string"}
config.json
versionfilter
versionfilter provides parameters to specify the version pattern used when generating manifest. kind - semver versionfilter of kind `semver` uses semantic versioning as version filtering pattern accepts one of: `patch` - patch only update patch version `minor` - minor only update minor version `major` - major only update major versions `a version constraint` such as `>= 1.0.0` kind - regex versionfilter of kind `regex` uses regular expression as version filtering pattern accepts a valid regular expression example: ``` versionfilter: kind: semver pattern: minor ``` and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
npm
Spec defines the parameters which can be provided to the NPM builder.
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}