feat: manage additional ceph sections
Build / precommit (pull_request) Successful in 5m33s

- ensure mons configuration are managed in code
- ensure radowgw configuration are managed in code
This commit is contained in:
2025-11-08 17:42:27 +11:00
parent 92a48b4113
commit 54992ff182
2 changed files with 47 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<% @config.each do |section, settings| -%>
[<%= section %>]
<% settings.each do |key, value| -%>
<%# Convert booleans and numbers to strings, leave strings untouched %>
<%# Convert booleans and numbers to strings, leave strings untouched -%>
<%= key %> = <%= value.is_a?(TrueClass) ? 'true' : value.is_a?(FalseClass) ? 'false' : value %>
<% end -%>