Fix Ironic gating
Ironic gating was failing due to missing pip packages, additionally there were some structural changes ro the inventory file which were needed. Change-Id: I77c40e7a49ebfbe05aac6d6a3d11ba9329c60413
This commit is contained in:
parent
58b09878ca
commit
3113ef63af
@ -147,6 +147,8 @@ ironic_pip_packages:
|
|||||||
- ironic
|
- ironic
|
||||||
- python-ironicclient
|
- python-ironicclient
|
||||||
- python-swiftclient
|
- python-swiftclient
|
||||||
|
- pycrypto
|
||||||
|
- python-memcached
|
||||||
|
|
||||||
ironic_api_apt_packages:
|
ironic_api_apt_packages:
|
||||||
- apache2
|
- apache2
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# 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.
|
||||||
|
|
||||||
ansible_ssh_host: "{{ ansible_host }}"
|
|
||||||
container_name: "{{ inventory_hostname }}"
|
container_name: "{{ inventory_hostname }}"
|
||||||
container_networks:
|
container_networks:
|
||||||
management_address:
|
management_address:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[all]
|
[all]
|
||||||
localhost ansible_connection=local ansible_become=True ansible_user=root
|
localhost ansible_connection=local ansible_become=True ansible_user=root
|
||||||
infra1 ansible_host=10.100.100.101 ansible_become=True ansible_user=root
|
infra1 ansible_ssh_host=10.100.100.101 ansible_host=10.100.100.101 ansible_become=True ansible_user=root
|
||||||
ironic1 ansible_host=10.100.100.102 ansible_become=True ansible_user=root
|
ironic1 ansible_ssh_host=10.100.100.102 ansible_host=10.100.100.102 ansible_become=True ansible_user=root
|
||||||
|
|
||||||
# Note(mrda): 'ironicinstallhost' will need to externally resolve to where
|
# Note(mrda): 'ironicinstallhost' will need to externally resolve to where
|
||||||
# you want to do an 'allinone' install, and the root account will need to have
|
# you want to do an 'allinone' install, and the root account will need to have
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
|
|
||||||
- name: Playbook for creating containers
|
- name: Playbook for creating containers
|
||||||
hosts: all_containers
|
hosts: all_containers
|
||||||
connection: local
|
|
||||||
gather_facts: false
|
gather_facts: false
|
||||||
roles:
|
roles:
|
||||||
- role: "lxc_container_create"
|
- role: "lxc_container_create"
|
||||||
|
Loading…
Reference in New Issue
Block a user