RGW: Add warning about civetweb and fastcgi

These frontneds have been removed in quincy release[1].

[1] 1627d6c76a

Change-Id: Ib6d2055beee21e3dbc56a8f577437ebc7ca986bd
This commit is contained in:
Takashi Kajinami 2023-09-07 02:23:15 +09:00
parent 5ebde1e6b1
commit 6bfff36f36
2 changed files with 9 additions and 0 deletions

View File

@ -145,11 +145,13 @@ define ceph::rgw (
}
}
'civetweb': {
warning('civetweb frontend has been removed in quincy release.')
ceph::rgw::civetweb { $name:
rgw_frontends => $rgw_frontends,
}
}
'apache-proxy-fcgi': {
warning('fastcgi frontend has been removed in quincy release.')
$rgw_frontends_real = pick($rgw_frontends, 'fastcgi socket_port=9000 socket_host=127.0.0.1');
ceph_config {
"client.${name}/rgw_frontends": value => $rgw_frontends_real;

View File

@ -0,0 +1,7 @@
---
deprecations:
- |
Support for RADOS Gateway deployment with fastcgi frontend or civetweb
frontend has been deprecated. These fronends have been removed in Quincy
release. The support may be removed when the minimum tested ceph version
is bumped to Quincy or later.