From 18eacaad81d7c72d612b7bd6d5b46c147c376bcc Mon Sep 17 00:00:00 2001 From: grakiss Date: Wed, 6 Jan 2016 16:52:29 +0800 Subject: Update ini config of ceph with ini module JIRA:COMPASS-254 - use more professional way to update ini config Change-Id: I2afcf3b93e76a211df88f1cb4b02690849fbdab6 Signed-off-by: grakiss --- .../ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml | 11 ++++++++++- .../ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) (limited to 'deploy') diff --git a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml index 79388f74..77d0bc53 100644 --- a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml +++ b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml @@ -5,7 +5,16 @@ - create_ceph_cluster - name: default config for ceph - shell: cd {{ ceph_cluster_dir[0] }} && echo "osd_journal_size = 1024" >> ceph.conf && echo "osd_pool_default_size = 2" >> ceph.conf && echo "public_network = {{ mgmt_cidr }}" >> ceph.conf && echo "cluster_network = {{ storage_cidr }} " >> ceph.conf + ini_file: + dest: "{{ ceph_cluster_dir[0] }}/ceph.conf" + section: "{{ item.section }}" + option: "{{ item.option }}" + value: "{{ item.value }}" + with_items: + - { section: "global", option: "osd_journal_size", value: "1024" } + - { section: "global", option: "osd_pool_default_size", value: "2" } + - { section: "global", option: "public_network", value: "{{ mgmt_cidr }}" } + - { section: "global", option: "cluster_network", value: "{{ storage_cidr }}" } - name: install ceph for every nodes includes jumpserver shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy install {{ ceph_cluster_hosts.stdout_lines[0]}} diff --git a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml index 05f70bdc..aa6f8ba5 100644 --- a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml +++ b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml @@ -5,7 +5,16 @@ - create_ceph_cluster - name: default config for ceph - shell: cd {{ ceph_cluster_dir[0] }} && echo "osd_journal_size = 1024" >> ceph.conf && echo "osd_pool_default_size = 2" >> ceph.conf && echo "public_network = {{ mgmt_cidr }}" >> ceph.conf && echo "cluster_network = {{ storage_cidr }} " >> ceph.conf + ini_file: + dest: "{{ ceph_cluster_dir[0] }}/ceph.conf" + section: "{{ item.section }}" + option: "{{ item.option }}" + value: "{{ item.value }}" + with_items: + - { section: "global", option: "osd_journal_size", value: "1024" } + - { section: "global", option: "osd_pool_default_size", value: "2" } + - { section: "global", option: "public_network", value: "{{ mgmt_cidr }}" } + - { section: "global", option: "cluster_network", value: "{{ storage_cidr }}" } - name: install ceph for every nodes includes jumpserver shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy install --no-adjust-repos --repo-url http://10.1.0.12/cblr/repo_mirror/centos7-juno-ppa --gpg-url http://10.1.0.12/cblr/repo_mirror/centos7-juno-ppa/ceph_key_release.asc {{ ceph_cluster_hosts.stdout_lines[0]}} -- cgit 1.2.3-korg