In 2025, Bitnami changed how it provides Docker images and Helm charts. Details here:
As a result, attempting to pull the Bitnami images fails:
$ docker pull bitnami/redis:7.0.11-debian-11-r12
Error response from daemon: failed to resolve reference "docker.io/bitnami/redis:7.0.11-debian-11-r12": docker.io/bitnami/redis:7.0.11-debian-11-r12: not found
For example, the first 3 lines of chapter-2/kind-load.sh attempt to pull Bitnami images:
|
docker pull bitnami/redis:7.0.11-debian-11-r12 |
|
docker pull bitnami/postgresql:15.3.0-debian-11-r17 |
|
docker pull bitnami/kafka:3.4.1-debian-11-r0 |
I am not sure of the “best” way to resolve this issue.
Bitnami has moved older images to the Bitnami Legacy Registry.
I have tested the 3 docker pull commands from kind-load.sh, replacing bitnami/ with bitnamilegacy/, and it works.
The blog post says “this is a temporary solution, and we do not plan to keep this registry around for long.”
Bitnami says it “will continue to offer a limited subset of free, latest-version images intended for development use.”
There may be other consequences from this change, such as the availability of Helm charts, that I have not yet tested.
In 2025, Bitnami changed how it provides Docker images and Helm charts. Details here:
As a result, attempting to pull the Bitnami images fails:
$ docker pull bitnami/redis:7.0.11-debian-11-r12 Error response from daemon: failed to resolve reference "docker.io/bitnami/redis:7.0.11-debian-11-r12": docker.io/bitnami/redis:7.0.11-debian-11-r12: not foundFor example, the first 3 lines of
chapter-2/kind-load.shattempt to pull Bitnami images:platforms-on-k8s/chapter-2/kind-load.sh
Lines 1 to 3 in 86387e1
I am not sure of the “best” way to resolve this issue.
Bitnami has moved older images to the Bitnami Legacy Registry.
I have tested the 3
docker pullcommands fromkind-load.sh, replacingbitnami/withbitnamilegacy/, and it works.The blog post says “this is a temporary solution, and we do not plan to keep this registry around for long.”
Bitnami says it “will continue to offer a limited subset of free, latest-version images intended for development use.”
There may be other consequences from this change, such as the availability of Helm charts, that I have not yet tested.