diff options
author | Tim Rozet <trozet@redhat.com> | 2017-11-21 11:25:50 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-11-28 11:03:20 -0500 |
commit | 33aebc3b51ce4bc816499a8b68a7feca77a12c6c (patch) | |
tree | fbbe43f7e5b6cd0031db856d8fb17b36e531fa18 /lib/ansible/playbooks | |
parent | 2c26b89b546983ec2621f6dce8715873fe6ab774 (diff) |
Fixes upstream deployments
There was an issue with patching the overcloud where the patch binary is
missing, making it impossible to apply patches. This change install
patch now on the image.
Also, although deployments were successful, storage was not working.
This is because by default upstream does not apply Ceph OSDs to compute
nodes for hyperconverged Ceph, but we use this as our standard
deployment in Apex. This patch inserts CephOSD into the default Compute
role. Note: we normally override role's services in regular Apex
deployments so we do not hit this issue there.
Change-Id: I5bddda4784dc00148395863ae0990343a4159602
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'lib/ansible/playbooks')
-rw-r--r-- | lib/ansible/playbooks/deploy_overcloud.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/ansible/playbooks/deploy_overcloud.yml b/lib/ansible/playbooks/deploy_overcloud.yml index 8acfa764..4d55c8fc 100644 --- a/lib/ansible/playbooks/deploy_overcloud.yml +++ b/lib/ansible/playbooks/deploy_overcloud.yml @@ -35,6 +35,14 @@ state: restarted enabled: yes become: yes + - name: Insert Ceph OSDs into Compute role + lineinfile: + path: /usr/share/openstack-tripleo-heat-templates/roles_data.yaml + insertbefore: 'OS::TripleO::Services::NovaCompute' + line: ' - OS::TripleO::Services::CephOSD' + owner: root + group: root + become: yes - name: Upload glance images shell: "{{ stackrc }} && openstack overcloud image upload" become: yes |