setup for reloader chart 3.0.0-beta.1

This commit is contained in:
Safwan
2026-08-04 20:20:10 +05:00
parent 7a94f29a71
commit 121c19450a
14 changed files with 91 additions and 42 deletions
+3 -3
View File
@@ -207,10 +207,10 @@ func ReloaderDeploymentName(releaseName string) string {
if releaseName == "" {
releaseName = DefaultHelmReleaseName
}
// The chart is named "reloader-v2", so the fullname template renders
// <release>-reloader-v2. Keep this the single source of truth; the
// The chart is named "reloader", so the fullname template renders
// <release>-reloader. Keep this the single source of truth; the
// cluster-role and pod-selector helpers derive their names from it.
return releaseName + "-reloader-v2"
return releaseName + "-reloader"
}
// ReloaderPodSelector returns the label selector for Reloader pods.