provectus / kafka-ui

Open-Source Web UI for Apache Kafka Management
Apache License 2.0
9.53k stars 1.16k forks source link

No docker image for appVersion in Helm Chart #2511

Closed nbrns closed 2 years ago

nbrns commented 2 years ago

Describe the bug

When deploying the helm chart I receive backoffs as the appVersion in the helm chart does not relate to any available docker image tag.

Set up

Running in a GitOps setup using flux CD. Helm chart is installed with version 4.2.0 and appversion 4.0.0. Manual helm install resulted in the same error.

Steps to Reproduce

Steps to reproduce the behavior:

helm repo add kafka-ui https://provectus.github.io/kafka-ui
helm install my-kafka-ui kafka-ui/kafka-ui --version 0.4.2

Expected behavior

Deployment with an available image version.

Screenshots

Additional context

I could fix it by overwriting the image tag to latest, however for a production deployment I would prefer a pinned version.

Thanks!

github-actions[bot] commented 2 years ago

Hello there nbrns! 👋

Thank you and congratulations 🎉 for opening your very first issue in this project! 💖

In case you want to claim this issue, please comment down below! We will try to get back to you as soon as we can. 👀

Haarolean commented 2 years ago

Hey, thanks for reaching out.

We'll get this fixed, meanwhile you could use this tag: provectuslabs/kafka-ui:v0.4.0

alyvusal commented 2 years ago

after deploy do

kubectl set image deployment/kafka-ui kafka-ui=docker.io/provectuslabs/kafka-ui:v0.4.0

or directly add version to helm

helm install kafka-ui kafka-ui/kafka-ui --set image.tag="v0.4.0"
Haarolean commented 2 years ago

Fixed