]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/cephadm: fix default image base in reef
authorAdam King <adking@redhat.com>
Tue, 10 Oct 2023 16:28:54 +0000 (12:28 -0400)
committerAdam King <adking@redhat.com>
Tue, 10 Oct 2023 16:28:54 +0000 (12:28 -0400)
The image base is not meant to have a tag attached
to it. IT is just meant to be the base to be added
to with other tags as part of things like providing
--ceph-version to the upgrade command

Fixes: https://tracker.ceph.com/issues/63150
Signed-off-by: Adam King <adking@redhat.com>
src/pybind/mgr/cephadm/module.py

index 6fc959c0013e752e7f1b2ef0c2c6fcd7daaf135f..7b97ce74a947e8cda6dbec6350aca5ef5269ac95 100644 (file)
@@ -104,7 +104,7 @@ os._exit = os_exit_noop   # type: ignore
 
 
 # Default container images -----------------------------------------------------
-DEFAULT_IMAGE = 'quay.io/ceph/ceph:v18'
+DEFAULT_IMAGE = 'quay.io/ceph/ceph'  # DO NOT ADD TAG TO THIS
 DEFAULT_PROMETHEUS_IMAGE = 'quay.io/prometheus/prometheus:v2.43.0'
 DEFAULT_NODE_EXPORTER_IMAGE = 'quay.io/prometheus/node-exporter:v1.5.0'
 DEFAULT_NVMEOF_IMAGE = 'quay.io/ceph/nvmeof:0.0.2'