From 579d1d23d059b46566fcc0cb345599380f63b41d Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Tue, 12 Aug 2025 14:26:36 -0400 Subject: [PATCH] tentacle: python-common/cephadm: use ceph20- prefixed images The samba-containers project is now producing images that are based on samba + ceph tentacle packages (for libcephfs, etc). Use that as the image used for the samba server. Same for samba-metrics. Signed-off-by: John Mulligan --- src/python-common/ceph/cephadm/images.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/python-common/ceph/cephadm/images.py b/src/python-common/ceph/cephadm/images.py index 03443ba1be2f3..a5a6c5f35ca89 100644 --- a/src/python-common/ceph/cephadm/images.py +++ b/src/python-common/ceph/cephadm/images.py @@ -39,8 +39,12 @@ class DefaultImages(Enum): 'jaeger_collector') JAEGER_AGENT = _create_image('quay.io/jaegertracing/jaeger-agent:1.29', 'jaeger_agent') JAEGER_QUERY = _create_image('quay.io/jaegertracing/jaeger-query:1.29', 'jaeger_query') - SAMBA = _create_image('quay.io/samba.org/samba-server:devbuilds-centos-amd64', 'samba') - SAMBA_METRICS = _create_image('quay.io/samba.org/samba-metrics:latest', 'samba_metrics') + SAMBA = _create_image( + 'quay.io/samba.org/samba-server:ceph20-centos-amd64', 'samba' + ) + SAMBA_METRICS = _create_image( + 'quay.io/samba.org/samba-metrics:ceph20-centos-amd64', 'samba_metrics' + ) NGINX = _create_image('quay.io/ceph/nginx:sclorg-nginx-126', 'nginx') OAUTH2_PROXY = _create_image('quay.io/oauth2-proxy/oauth2-proxy:v7.6.0', 'oauth2_proxy') -- 2.39.5