File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ All Ceph hosts must be in the `ceph` group.
36
36
* ` cephadm_enable_dashboard ` : If enabled - dashboard service on MGR will be enabled (default: False)
37
37
* ` cephadm_enable_firewalld ` : If enabled - firewalld will be installed and rules will be applied (default: False)
38
38
* ` cephadm_enable_monitoring ` : If enabled - cephadm monitoring stack will be deployed i.e. prometheus/node-exporters/grafana (default: False)
39
+ * ` cephadm_image ` : If set - cephadm will use this image
39
40
* ` cephadm_install_ceph_cli ` : If enabled - ceph cli will be installed on the hosts (default: False)
40
41
* ` cephadm_ssh_public_key ` : Location where ssh public key used by cephadm will be saved (default: /etc/ceph/cephadm.pub)
41
42
* ` cephadm_ssh_private_key ` : Location where ssh private key used by cephadm will be saved (default: /etc/ceph/cephadm.id)
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ cephadm_recreate: False
8
8
# Packages
9
9
cephadm_custom_repos : False
10
10
cephadm_package_update : False
11
+ # Image
12
+ cephadm_image : " "
11
13
# Registry
12
14
cephadm_registry_url : " "
13
15
cephadm_registry_username : " "
Original file line number Diff line number Diff line change 9
9
firewalld : " {{ '--skip-firewalld' if not cephadm_enable_firewalld | bool else '' }}"
10
10
command :
11
11
cmd : >
12
- cephadm bootstrap
12
+ cephadm
13
+ {% if cephadm_image | length > 0 %}
14
+ --image={{ cephadm_image }}
15
+ {% endif %}
16
+ bootstrap
13
17
{{ monitoring_stack }}
14
18
{{ dashboard }}
15
19
{{ firewalld }}
You can’t perform that action at this time.
0 commit comments