diff --git a/ceph/ceph_admin/bootstrap.py b/ceph/ceph_admin/bootstrap.py index 950921966f..8b9bf2d91f 100644 --- a/ceph/ceph_admin/bootstrap.py +++ b/ceph/ceph_admin/bootstrap.py @@ -371,6 +371,8 @@ def bootstrap(self: CephAdmProtocol, config: Dict): supported_overrides += [ "samba", "samba_metrics", + "nginx", + "oauth2_proxy", ] for image in supported_overrides: diff --git a/cli/ops/cephadm.py b/cli/ops/cephadm.py index 33ba260813..5fe041c0de 100644 --- a/cli/ops/cephadm.py +++ b/cli/ops/cephadm.py @@ -24,6 +24,8 @@ "nvmeof", "samba", "samba_metrics", + "nginx", + "oauth2_proxy", ] @@ -103,6 +105,8 @@ def set_container_image_config(node, configs): nvmeof: nvmeof image URL samba: samba image URL samba_metrics: samba metrics image URL + nginx: nginx image URL + oauth2_proxy: oauth2_proxy image URL """ # Set CephAdm object cephadm = CephAdm(node)