blob: ceaa4582793793c2a9bb96ebad181376b1b5e1b6 [file] [log] [blame]
{%- from "ceph/map.jinja" import common, mon with context %}
include:
- ceph.common
mon_packages:
pkg.installed:
- names: {{ mon.pkgs }}
- require_in:
- file: common_config
cluster_{{ grains.host }}_secret_key:
cmd.run:
- name: "ceph-authtool --create-keyring /etc/ceph/{{ common.get('cluster_name', 'ceph') }}.mon.{{ grains.host }}.keyring --gen-key -n mon. --cap mon 'allow *'"
- unless: "test -f /etc/ceph/{{ common.get('cluster_name', 'ceph') }}.mon.{{ grains.host }}.keyring"
- require:
- pkg: mon_packages
add_admin_keyring_to_mon_keyring:
cmd.run:
- name: "ceph-authtool /etc/ceph/{{ common.get('cluster_name', 'ceph') }}.mon.{{ grains.host }}.keyring --import-keyring /etc/ceph/{{ common.get('cluster_name', 'ceph') }}.client.admin.keyring"
- unless: "test -f /var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}/done"
- require:
- pkg: mon_packages
generate_monmap:
cmd.run:
- name: "monmaptool --create {%- for member in common.members %} --add {{ member.name }} {{ member.host }} {%- endfor %} --fsid {{ common.fsid }} /tmp/monmap"
- user: ceph
- unless: "test -f /tmp/monmap"
- require:
- pkg: mon_packages
/var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}:
file.directory:
- user: ceph
- group: ceph
- mode: 755
- makedirs: True
/etc/ceph/{{ common.get('cluster_name', 'ceph') }}.mon.{{ grains.host }}.keyring:
file.managed:
- user: ceph
- group: ceph
- replace: false
- require:
- pkg: mon_packages
populate_monmap:
cmd.run:
- name: "sudo -u ceph ceph-mon -c /etc/ceph/{{ common.get('cluster_name', 'ceph') }}.conf --keyring /etc/ceph/{{ common.get('cluster_name', 'ceph') }}.mon.{{ grains.host }}.keyring --mkfs -i {{ grains.host }} --monmap /tmp/monmap"
- unless: "test -f /var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}/kv_backend"
- require:
- pkg: mon_packages
- file: common_config
/var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}/keyring:
file.managed:
- source: salt://ceph/files/mon_keyring
- user: ceph
- template: jinja
- unless: "test -f /var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}/done"
- require:
- pkg: mon_packages
{%- if common.version in ['nautilus'] -%}
enable_msgr2_protocol:
cmd.run:
- name: "ceph mon enable-msgr2"
- unless: "test -f /var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}/done"
- require:
- pkg: mon_packages
- file: common_config
{%- endif %}
/var/lib/ceph/mon/{{ common.get('cluster_name', 'ceph') }}-{{ grains.host }}/done:
file.managed:
- user: ceph
- group: ceph
- content: { }
- require:
- pkg: mon_packages
mon_services:
service.running:
- enable: true
- names: [ceph-mon@{{ grains.host }}]
- watch:
- file: common_config
- require:
- pkg: mon_packages
{%- if grains.get('noservices') %}
- onlyif: /bin/false
{%- endif %}