Inherit/imply the default registry for a given Helm values.yaml
, if one is present elsewhere?
#30614
-
What would you like help with?I would like help with my configuration How are you running Renovate?Self-hosted If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.37.425.1 Please tell us more about your question or problemWhen defining a Helm image:
registry: registry.k8s.io
repository: sig-storage/hostpathplugin
tag: "v1.0.0"
sidecars:
healthmonitor:
image:
repository: sig-storage/csi-external-health-monitor-controller
tag: v0.1.0 Renovate will correctly look up the Docker image for the However, Renovate's lookup for the sidecar image is at Is there any way to allow Renovate to notice that there's already one If the (short-term?) solution is to set the This may be related to #30209 Logs (if relevant)Logs
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It looks like this can be done via module.exports = {
packageRules: [
{
matchFileNames: [
"values.yaml"
],
registryUrls: [
"registry.k8s.io"
]
}
]
} I'd be interested to hear if there's an alternate way, but this works if not |
Beta Was this translation helpful? Give feedback.
It looks like this can be done via
packageRules
:I'd be interested to hear if there's an alternate way, but this works if not