Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion upgrade/I.1.2.0/I.1.3.0/roles/compute/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
when: ansible_distribution == 'RedHat'

- name: allow instance scheduling on the compute node
command: nova-manage service enable --service nova-compute --host {{ ansible_fqdn }}
command: nova-manage service enable --service nova-compute --host {{ ansible_hostname }}
tags: before_config
when: ansible_distribution == 'Debian'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
when: ansible_distribution == 'RedHat'

- name: allow instance scheduling on the compute node
command: nova-manage service enable --service nova-compute --host {{ ansible_fqdn }}
command: nova-manage service enable --service nova-compute --host {{ ansible_hostname }}
tags: before_config
when: ansible_distribution == 'Debian'

Expand Down
2 changes: 1 addition & 1 deletion upgrade/I.1.2.1/I.1.3.0/roles/compute/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
when: ansible_distribution == 'RedHat'

- name: allow instance scheduling on the compute node
command: nova-manage service enable --service nova-compute --host {{ ansible_fqdn }}
command: nova-manage service enable --service nova-compute --host {{ ansible_hostname }}
tags: before_config
when: ansible_distribution == 'Debian'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
when: ansible_distribution == 'RedHat'

- name: allow instance scheduling on the compute node
command: nova-manage service enable --service nova-compute --host {{ ansible_fqdn }}
command: nova-manage service enable --service nova-compute --host {{ ansible_hostname }}
tags: before_config
when: ansible_distribution == 'Debian'

Expand Down
2 changes: 1 addition & 1 deletion upgrade/I.1.3.0/J.1.0.0/roles/compute/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Mark the nova-compute service as disabled to prevent Nova from scheduling
# any new servers on this node
- name: disable nova-compute to prevent instance scheduling
command: nova-manage service disable {{ ansible_fqdn }} nova-compute
command: nova-manage service disable --host {{ ansible_hostname }} --service nova-compute
tags: before_config

- name: stop openstack services
Expand Down
4 changes: 2 additions & 2 deletions upgrade/I.1.3.0/J.1.0.0/roles/openstack-full/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Mark the nova-compute service as disabled to prevent Nova from scheduling
# any new servers on this node
- name: disable nova-compute to prevent instance scheduling
command: nova-manage service disable {{ ansible_fqdn }} nova-compute
command: nova-manage service disable {{ ansible_hostname }} nova-compute
tags: before_config

- name: stop keepalived
Expand Down Expand Up @@ -299,7 +299,7 @@
tags: before_config

- name: allow instance scheduling on the compute node
command: nova-manage service enable {{ ansible_fqdn }} nova-compute
command: nova-manage service enable --host {{ ansible_hostname }} --service nova-compute
tags: before_config

- name: Ensure old puppet ssl files are removed
Expand Down