Merge "Install openstack client, inspector in clouds.yml"
This commit is contained in:
commit
7ec8374986
@ -77,6 +77,12 @@
|
|||||||
# as a result.
|
# as a result.
|
||||||
when: skip_install is not defined and install_dib | bool == true
|
when: skip_install is not defined and install_dib | bool == true
|
||||||
|
|
||||||
|
- name: "OpenStack Client - Install"
|
||||||
|
include: pip_install.yml
|
||||||
|
package=python-openstackclient
|
||||||
|
extra_args="-c {{ upper_constraints_file }}"
|
||||||
|
when: skip_install is not defined
|
||||||
|
|
||||||
- name: "Ironic Client - Install"
|
- name: "Ironic Client - Install"
|
||||||
include: pip_install.yml
|
include: pip_install.yml
|
||||||
package=python-ironicclient
|
package=python-ironicclient
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
---
|
---
|
||||||
ironic_api_url: "http://localhost:6385"
|
ironic_api_url: "http://localhost:6385"
|
||||||
|
ironic_inspector_api_url: "http://localhost:5050"
|
||||||
|
@ -17,4 +17,7 @@ clouds:
|
|||||||
bifrost:
|
bifrost:
|
||||||
auth_type: "none"
|
auth_type: "none"
|
||||||
endpoint: {{ ironic_api_url }}
|
endpoint: {{ ironic_api_url }}
|
||||||
|
bifrost-inspector:
|
||||||
|
auth_type: "none"
|
||||||
|
endpoint: {{ ironic_inspector_api_url }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -12,17 +12,12 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
---
|
---
|
||||||
# TODO(mgoddard): Ideally we would grab inspection data from ironic inspector
|
|
||||||
# rather than going direct to the web server. That would require either
|
|
||||||
# installing python-openstackclient, or creating an ansible module that uses
|
|
||||||
# python-ironic-inspector-client.
|
|
||||||
- block:
|
- block:
|
||||||
- name: Check node hardware inspection data
|
- name: Check node hardware inspection data
|
||||||
uri:
|
command: "openstack baremetal introspection data save {{ uuid }}"
|
||||||
url: "{{ inspector_store_data_url ~ '/ironic-inspector/inspector_data-' ~ uuid }}"
|
|
||||||
method: GET
|
|
||||||
return_content: True
|
|
||||||
register: inspection_data
|
register: inspection_data
|
||||||
|
environment:
|
||||||
|
OS_CLOUD: "{% if enable_keystone | default(false) | bool %}bifrost{% else %}bifrost-inspector{% endif %}"
|
||||||
|
|
||||||
# TODO(mgoddard): More validation of data format and contents.
|
# TODO(mgoddard): More validation of data format and contents.
|
||||||
- name: Validate the inspection data format
|
- name: Validate the inspection data format
|
||||||
@ -35,6 +30,6 @@
|
|||||||
- "'interfaces' in inventory"
|
- "'interfaces' in inventory"
|
||||||
- "'disks' in inventory"
|
- "'disks' in inventory"
|
||||||
vars:
|
vars:
|
||||||
data: "{{ inspection_data.content | from_json }}"
|
data: "{{ inspection_data.stdout | from_json }}"
|
||||||
inventory: "{{ data.inventory }}"
|
inventory: "{{ data.inventory }}"
|
||||||
when: inspector_store_data_in_nginx | bool
|
when: inspector_store_data_in_nginx | bool
|
||||||
|
@ -102,6 +102,19 @@
|
|||||||
- role: bifrost-test-inspection
|
- role: bifrost-test-inspection
|
||||||
when: inspect_nodes | default('false') | bool == true
|
when: inspect_nodes | default('false') | bool == true
|
||||||
|
|
||||||
|
- hosts: localhost
|
||||||
|
name: "Tests the use of openstack clients"
|
||||||
|
connection: local
|
||||||
|
tasks:
|
||||||
|
- name: "List bare metal nodes using openstack client"
|
||||||
|
command: openstack baremetal node list
|
||||||
|
environment:
|
||||||
|
OS_CLOUD: bifrost
|
||||||
|
- name: "List introspection rules using openstack client"
|
||||||
|
command: openstack baremetal introspection rule list
|
||||||
|
environment:
|
||||||
|
OS_CLOUD: "{% if enable_keystone | default(false) | bool %}bifrost{% else %}bifrost-inspector{% endif %}"
|
||||||
|
when: enable_inspector | bool
|
||||||
|
|
||||||
- hosts: baremetal
|
- hosts: baremetal
|
||||||
name: "Create configuration drive files and deploy machines"
|
name: "Create configuration drive files and deploy machines"
|
||||||
|
7
releasenotes/notes/install-osc-c179e673dc338ab3.yaml
Normal file
7
releasenotes/notes/install-osc-c179e673dc338ab3.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
Adds support for installing the ``openstack`` client, even when the
|
||||||
|
Identity service is disabled. If the Identity service is disabled,
|
||||||
|
also adds a new cloud in ``clouds.yml`` called ``bifrost-inspector``
|
||||||
|
which references to the Bare Metal Introspection service.
|
Loading…
x
Reference in New Issue
Block a user