f18c26a9b3
Moved Ansible specific elements to playbooks/
32 lines
1.3 KiB
YAML
32 lines
1.3 KiB
YAML
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# TODO: Consider converting to ansible virt module.
|
|
---
|
|
- name: "Install testing packages"
|
|
apt: name={{ item }} state=present
|
|
with_items:
|
|
- libvirt-bin
|
|
- qemu-utils
|
|
- qemu-kvm
|
|
- sgabios
|
|
- name: "Create virtual machines"
|
|
script: create_vm_nodes-for-role.sh creates="{{baremetal_csv_file}}"
|
|
environment:
|
|
NODEOUTPUT: "{{baremetal_csv_file}}"
|
|
delegate_to: localhost
|
|
- name: "Setting file permissions such that the baremetal csv file at /tmp/baremetal.csv can be read by the user executing Ansible"
|
|
file: path="{{baremetal_csv_file}}" owner="{{ansible_env.SUDO_USER}}"
|
|
when: ansible_env.SUDO_USER is defined and baremetal_csv_file is defined and baremetal_csv_file != ""
|