kedacore / charts

Helm charts for KEDA
Apache License 2.0
148 stars 205 forks source link

feat: Add a way to customize the 'managed-by' label #619

Closed jkremser closed 3 months ago

jkremser commented 3 months ago

By default this is a no-operation (so backward compatibility is guaranteed). If the .customManagedBy value is not empty, it will be used as a value for app.kubernetes.io/managed-by label. This is useful, when using this helm chart as a source for some other tools just for rendering the manifests, but not using the helm {install,upgrade,uninstall} or any other day-2 stuff.

helm template . --set customManagedBy=foo | grep managed-by | head -1
    app.kubernetes.io/managed-by: foo

helm template . | grep managed-by | head -1                                                                                                                                                           
    app.kubernetes.io/managed-by: Helm

Checklist