bitnami / charts

Bitnami Helm Charts
https://bitnami.com
Other
9.04k stars 9.22k forks source link

wordpress Version 24.0.6 at ArtifactHUB (helm) #30561

Open titver968 opened 13 hours ago

titver968 commented 13 hours ago

Name and Version

bitnami/wordpress 24.0.6

What architecture are you using?

amd64

What steps will reproduce the bug?

The command: helm pull --destination /tmp --version 24.0.6 --repo https://charts.bitnami.com/bitnami wordpress ends with error:

Error: invalid_reference: invalid tag
titver968 commented 13 hours ago

The Version 24.0.4 can be installed.

carrodher commented 8 hours ago

Please note the recommended way of consuming Bitnami Helm charts is using the OCI package hosted in DockerHub:

helm pull oci://registry-1.docker.io/bitnamicharts/wordpress --version 24.0.6

However, if you're using the Bitnami index.yaml, please note you need to add it to the Helm CLI and keep it up to date:

$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm repo update bitnami
Hang tight while we grab the latest from your chart repositories...
 search repo bitnami/wordpress
...Successfully got an update from the "bitnami" chart repository
Update Complete. ⎈Happy Helming!⎈
$ helm search repo bitnami/wordpress
NAME                    CHART VERSION   APP VERSION DESCRIPTION
bitnami/wordpress       24.0.6          6.7.0       WordPress is the world's most popular blogging ...

$ helm pull --version 24.0.6 bitnami/wordpress
$ ls -la
...
-rw-r--r--   1 carlosrh  staff   152K Nov 21 17:26 wordpress-24.0.6.tgz

Any other way of consuming Bitnami charts could not be supported.