forked from arencibiafrancisco/cloudstack-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy-cloudstack.yml
More file actions
23 lines (23 loc) · 1016 Bytes
/
deploy-cloudstack.yml
File metadata and controls
23 lines (23 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
- name: Cloudstack Management Server Deployment
hosts: acs-manager
roles:
- role: mysql
when: install_local_db | default(false) | bool
- nfs-server
- cloudstack-manager
- cloudmonkey
tasks:
- name: Include seedstorage.yml
ansible.builtin.include_tasks: ./roles/cloudstack-manager/tasks/seedstorage.yml
vars:
- mysql_root_password: "{{ mysql_root_password }}"
- mysql_cloud_password: "{{ mysql_cloud_password }}"
- cloudstack_release: "{{ cloudstack_release }}"
- cloudstack_systemvmtemplate: "{{ cloudstack_systemvmtemplate }}"
- old_mysql_root_password: ""
- systemvm_templates:
- url: "http://packages.shapeblue.com/systemvmtemplate/{{ cloudstack_release }}/systemvmtemplate-{{ cloudstack_systemvmtemplate }}-kvm.qcow2.bz2"
hypervisor: "kvm"
- url: "http://packages.shapeblue.com/systemvmtemplate/{{ cloudstack_release }}/systemvmtemplate-{{ cloudstack_systemvmtemplate }}-xen.vhd.bz2"
hypervisor: "xenserver"