Rearranging the repository
Moved Ansible specific elements to playbooks/
This commit is contained in:
31
playbooks/roles/bifrost-create-vm-nodes/tasks/main.yml
Normal file
31
playbooks/roles/bifrost-create-vm-nodes/tasks/main.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
# 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 != ""
|
||||
Reference in New Issue
Block a user