Add a f20 temp instance playbook
This commit is contained in:
parent
50a046f114
commit
3ba97ea0be
1 changed files with 49 additions and 0 deletions
49
playbooks/f20_temp_instance.yml
Normal file
49
playbooks/f20_temp_instance.yml
Normal file
|
@ -0,0 +1,49 @@
|
|||
# setup a transient fedora instance
|
||||
# optionally can take --extra-vars="hostbase=hostnamebase root_auth_users='user1 user2 user3'"
|
||||
|
||||
- name: check/create instance
|
||||
hosts: lockbox01.phx2.fedoraproject.org
|
||||
user: root
|
||||
gather_facts: False
|
||||
|
||||
vars_files:
|
||||
- /srv/web/infra/ansible/vars/global.yml
|
||||
- "{{ private }}/vars.yml"
|
||||
vars:
|
||||
- keypair: fedora-admin-20130801
|
||||
- image: "{{ f20_qcow_id }}"
|
||||
- instance_type: m1.small
|
||||
- security_group: default
|
||||
|
||||
tasks:
|
||||
- include: "{{ tasks }}/transient_cloud.yml"
|
||||
|
||||
- name: provision instance
|
||||
hosts: tmp_just_created
|
||||
user: root
|
||||
gather_facts: True
|
||||
|
||||
vars_files:
|
||||
- /srv/web/infra/ansible/vars/global.yml
|
||||
- "{{ private }}/vars.yml"
|
||||
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
||||
|
||||
tasks:
|
||||
- name: growpart /dev/vda1 partition (/) to full size
|
||||
action: command growpart /dev/vda 1
|
||||
ignore_errors: true
|
||||
register: growpart
|
||||
|
||||
- name: resize the /dev/vda 1 fs
|
||||
action: command resize2fs /dev/vda1
|
||||
when: growpart.rc == 0
|
||||
|
||||
- name: put the mbr back - b/c the resize breaks booting otherwise
|
||||
action: shell cat /usr/share/syslinux/mbr.bin > /dev/vda
|
||||
when: growpart.rc == 0
|
||||
|
||||
|
||||
- include: "{{ tasks }}/cloud_setup_basic.yml"
|
||||
|
||||
handlers:
|
||||
- include: "{{ handlers }}/restart_services.yml"
|
Loading…
Add table
Add a link
Reference in a new issue