From fb6fa7d450e941bda070a8f36c90afeb4a45ee5f Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 10 Aug 2025 19:26:03 +1000 Subject: [PATCH] chore: add rados gateway role - just enough role to deploy some containers --- site/roles/manifests/infra/ceph/rgw.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 site/roles/manifests/infra/ceph/rgw.pp diff --git a/site/roles/manifests/infra/ceph/rgw.pp b/site/roles/manifests/infra/ceph/rgw.pp new file mode 100644 index 0000000..ee8ca20 --- /dev/null +++ b/site/roles/manifests/infra/ceph/rgw.pp @@ -0,0 +1,10 @@ +# a role to deploy the ceph rgw +class roles::infra::ceph::rgw { + if $facts['firstrun'] { + include profiles::defaults + include profiles::firstrun::init + }else{ + include profiles::defaults + include profiles::base + } +}