diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index dc16dc99a99b8bb37cc75a6a05b23682500fdcc3..09d3cf2bc44373d74f3ce0de40a4d174ddb26965 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -2230,27 +2230,6 @@ If the `versioning` field is missing, then Renovate defaults to using `semver` v For more details and examples, see our [documentation for the `regex` manager](/modules/manager/regex/). For template fields, use the triple brace `{{{ }}}` notation to avoid Handlebars escaping any special characters. -## registryAliases - -You can use the `registryAliases` object to set registry aliases. -This feature only works with these managers: - -- `helm-requirements` -- `helmv3` -- `helmfile` - -The managers listed above all have this default registryAlias: - -```json -{ - "registryAliases": { - "stable": "https://charts.helm.sh/stable" - } -} -``` - -Alias values must be properly formatted URIs. - ### matchStrings `matchStrings` should each be a valid regular expression, optionally with named capture groups. @@ -2497,6 +2476,27 @@ This will lead to following update where `1.21-alpine` is the newest version of image: my.new.registry/aRepository/andImage:1.21-alpine ``` +## registryAliases + +You can use the `registryAliases` object to set registry aliases. +This feature only works with these managers: + +- `helm-requirements` +- `helmv3` +- `helmfile` + +The managers listed above all have this default registryAlias: + +```json +{ + "registryAliases": { + "stable": "https://charts.helm.sh/stable" + } +} +``` + +Alias values must be properly formatted URIs. + ## registryUrls Usually Renovate is able to either (a) use the default registries for a datasource, or (b) automatically detect during the manager extract phase which custom registries are in use.