Automated Dependency Updates for Helm Requirements
Categories: helm
, kubernetes
Renovate supports updating Helm Requirements dependencies.
File Matching¶
By default, Renovate will check any files matching the following regular expression: (^|/)requirements\.ya?ml$
.
For details on how to extend a manager's fileMatch
value, please follow this link.
Supported datasources¶
This manager supports extracting the following datasources: helm
.
Default config¶
{
"registryAliases": {
"stable": "https://charts.helm.sh/stable"
},
"commitMessageTopic": "helm chart {{depName}}",
"fileMatch": [
"(^|/)requirements\\.ya?ml$"
]
}
Additional Information¶
Renovate supports updating Helm Chart references within requirements.yaml
files.
The helm-requirements
manager defines this default registryAlias:
{
"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 documentation to learn more.
To learn how to use Helm with private packages, read private package support, Package Manager Credentials for Artifact Updating, helm.