jetstack / version-checker

Kubernetes utility for exposing image versions in use, compared to latest available upstream, as metrics.
https://jetstack.io
Apache License 2.0
661 stars 76 forks source link

Helm chart define Namespace #184

Closed nonamef closed 1 month ago

nonamef commented 2 months ago

Helm chart doesn't define a namespace so 'default' is used. Would be good to define a namespace and have 'version-checker' as the default to the chart. This would be the same as the example provided in ./deploy/yaml.

hawksight commented 2 months ago

Hey @nonamef thank you for raising the issue. I think that this can be solved with some better documentation in our readme.

You should be able to install this into your own namespace already. For example to install into "version-checker" namespace, you can try:

helm install version-checker jetstack/version-checker --namespace version-checker --create-namespace
hawksight commented 1 month ago

We are going to close this out as it currently works. eg, this also works if you want a custom namespace:

helm install version-checker jetstack/version-checker --namespace monitoring --create-namespace

If you have a specific reason to include namespace: {{ .Release.namespace }} in all the templates, please let us know.