feat: manage additional ceph sections
All checks were successful
Build / precommit (pull_request) Successful in 5m33s
All checks were successful
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:
parent
92a48b4113
commit
54992ff182
@ -129,6 +129,9 @@ lookup_options:
|
|||||||
profiles::ceph::client::keyrings:
|
profiles::ceph::client::keyrings:
|
||||||
merge:
|
merge:
|
||||||
strategy: deep
|
strategy: deep
|
||||||
|
profiles::ceph::conf::config:
|
||||||
|
merge:
|
||||||
|
strategy: deep
|
||||||
profiles::nginx::simpleproxy::locations:
|
profiles::nginx::simpleproxy::locations:
|
||||||
merge:
|
merge:
|
||||||
strategy: deep
|
strategy: deep
|
||||||
@ -398,6 +401,49 @@ profiles::ceph::conf::config:
|
|||||||
198.18.23.5/32,198.18.23.6/32,198.18.23.7/32,198.18.23.8/32,
|
198.18.23.5/32,198.18.23.6/32,198.18.23.7/32,198.18.23.8/32,
|
||||||
198.18.23.9/32,198.18.23.10/32,198.18.23.11/32,198.18.23.12/32,
|
198.18.23.9/32,198.18.23.10/32,198.18.23.11/32,198.18.23.12/32,
|
||||||
198.18.23.13/32
|
198.18.23.13/32
|
||||||
|
client.rgw.ausyd1nxvm2115:
|
||||||
|
rgw_realm: unkin
|
||||||
|
rgw_zonegroup: au
|
||||||
|
rgw_zone: syd1
|
||||||
|
client.rgw.ausyd1nxvm2116:
|
||||||
|
rgw_realm: unkin
|
||||||
|
rgw_zonegroup: au
|
||||||
|
rgw_zone: syd1
|
||||||
|
client.rgw.ausyd1nxvm2117:
|
||||||
|
rgw_realm: unkin
|
||||||
|
rgw_zonegroup: au
|
||||||
|
rgw_zone: syd1
|
||||||
|
client.rgw.ausyd1nxvm2118:
|
||||||
|
rgw_realm: unkin
|
||||||
|
rgw_zonegroup: au
|
||||||
|
rgw_zone: syd1
|
||||||
|
client.rgw.ausyd1nxvm2119:
|
||||||
|
rgw_realm: unkin
|
||||||
|
rgw_zonegroup: au
|
||||||
|
rgw_zone: syd1
|
||||||
|
mds:
|
||||||
|
keyring: /var/lib/ceph/mds/ceph-$id/keyring
|
||||||
|
mds_standby_replay: true
|
||||||
|
mds.prodnxsr0009-1:
|
||||||
|
host: prodnxsr0009
|
||||||
|
mds.prodnxsr0009-2:
|
||||||
|
host: prodnxsr0009
|
||||||
|
mds.prodnxsr0010-1:
|
||||||
|
host: prodnxsr0010
|
||||||
|
mds.prodnxsr0010-2:
|
||||||
|
host: prodnxsr0010
|
||||||
|
mds.prodnxsr0011-1:
|
||||||
|
host: prodnxsr0011
|
||||||
|
mds.prodnxsr0011-2:
|
||||||
|
host: prodnxsr0011
|
||||||
|
mds.prodnxsr0012-1:
|
||||||
|
host: prodnxsr0012
|
||||||
|
mds.prodnxsr0012-2:
|
||||||
|
host: prodnxsr0012
|
||||||
|
mds.prodnxsr0013-1:
|
||||||
|
host: prodnxsr0013
|
||||||
|
mds.prodnxsr0013-2:
|
||||||
|
host: prodnxsr0013
|
||||||
|
|
||||||
#profiles::base::hosts::additional_hosts:
|
#profiles::base::hosts::additional_hosts:
|
||||||
# - ip: 198.18.17.9
|
# - ip: 198.18.17.9
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<% @config.each do |section, settings| -%>
|
<% @config.each do |section, settings| -%>
|
||||||
[<%= section %>]
|
[<%= section %>]
|
||||||
<% settings.each do |key, value| -%>
|
<% 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 %>
|
<%= key %> = <%= value.is_a?(TrueClass) ? 'true' : value.is_a?(FalseClass) ? 'false' : value %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user