"pg_autoscaler",
"telemetry",
};
+
+ // Tentacle adds nvmeof as always-on
+ static const std::set<std::string> tentacle_modules = [] {
+ auto s = octopus_modules;
+ s.insert("nvmeof");
+ return s;
+ }();
+
static const std::map<uint32_t, std::set<std::string>> always_on_modules_map = {
{ CEPH_RELEASE_OCTOPUS, octopus_modules },
{ CEPH_RELEASE_PACIFIC, octopus_modules },
{ CEPH_RELEASE_QUINCY, octopus_modules },
{ CEPH_RELEASE_REEF, octopus_modules },
{ CEPH_RELEASE_SQUID, octopus_modules },
- { CEPH_RELEASE_TENTACLE, octopus_modules },
+ { CEPH_RELEASE_TENTACLE, tentacle_modules },
};
return always_on_modules_map;
};