mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
93c2d053a3
* feat(manager/gitlabci): add support for CI_REGISTRY * fix: pass correct property * chore: adapt tests * docs; add documentation for the new option * test: extend test cases * fix: do the abc properly * refactor: switch to using registryAliases option * docs: mention registry variable * style: remove extra heading * docs: fix sentence Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> * docs: move documentation to managers * docs: fix formatting * refactor: handle default value in function body * refactor: remove unused function * refactor: move registry alias handling to dockerfile manager * style: remove unused import * refactor: use match groups directly Co-authored-by: Michael Kriese <michael.kriese@visualon.de> * refactor: add dockerfile manager tests * chore: fix variable name Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
15 lines
607 B
Markdown
15 lines
607 B
Markdown
Checks `helmfile.yaml` files and extracts dependencies for the `helm` datasource.
|
|
|
|
The `helmfile` manager defines this default registryAlias:
|
|
|
|
```json
|
|
{
|
|
"registryAliases": {
|
|
"stable": "https://charts.helm.sh/stable"
|
|
}
|
|
}
|
|
```
|
|
|
|
If your Helm charts make use of repository aliases then you will need to configure an `registryAliases` object in your config to tell Renovate where to look for them. Be aware that alias values must be properly formatted URIs.
|
|
|
|
If you need to change the versioning format, read the [versioning](https://docs.renovatebot.com/modules/versioning/) documentation to learn more.
|