puppet-prod/site/profiles/templates/ceph/conf.erb
Ben Vincent e4fd0f47cd
All checks were successful
Build / precommit (pull_request) Successful in 5m14s
feat: add ceph rgw
- start managing ceph configuration file
- manage ceph-radosgw
- merge the ceph::conf and ceph::node profiles
- ensure the ceph repos exist
- mange nginx frontend and consul service
2025-08-12 17:47:32 +10:00

10 lines
332 B
Plaintext

# Managed by Puppet in profiles::ceph::conf
<% @config.each do |section, settings| -%>
[<%= section %>]
<% settings.each do |key, value| -%>
<%# Convert booleans and numbers to strings, leave strings untouched %>
<%= key %> = <%= value.is_a?(TrueClass) ? 'true' : value.is_a?(FalseClass) ? 'false' : value %>
<% end -%>
<% end -%>