Add certificate generation
This commit is contained in:
48
roles/ovirt.manageiq/examples/cfme.yml
Normal file
48
roles/ovirt.manageiq/examples/cfme.yml
Normal file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
- name: RHV CFME deployment
|
||||
hosts: localhost
|
||||
connection: local
|
||||
gather_facts: false
|
||||
|
||||
vars_files:
|
||||
# Contains encrypted `engine_password` and `metrics_password`
|
||||
# varibale using ansible-vault
|
||||
- passwords.yml
|
||||
|
||||
vars:
|
||||
engine_fqdn: ovirt-engine.example.com
|
||||
engine_user: admin@internal
|
||||
|
||||
miq_vm_name: cfme_59
|
||||
miq_qcow_url: https://cdn.example.com/cfme-rhevm-5.9.1.2-1.x86_64.qcow2
|
||||
miq_vm_cluster: mycluster
|
||||
miq_vm_root_password: securepassword
|
||||
miq_vm_cloud_init:
|
||||
host_name: "{{ miq_vm_name }}"
|
||||
miq_vm_disks:
|
||||
database:
|
||||
name: "{{ miq_vm_name }}_database"
|
||||
size: 10GiB
|
||||
interface: virtio_scsi
|
||||
format: raw
|
||||
log:
|
||||
name: "{{ miq_vm_name }}_log"
|
||||
size: 10GiB
|
||||
interface: virtio_scsi
|
||||
format: cow
|
||||
tmp:
|
||||
name: "{{ miq_vm_name }}_tmp"
|
||||
size: 10GiB
|
||||
interface: virtio_scsi
|
||||
format: raw
|
||||
miq_disabled_roles:
|
||||
- smartstate
|
||||
miq_enabled_roles:
|
||||
- notifier
|
||||
- ems_metrics_coordinator
|
||||
- ems_metrics_collector
|
||||
- ems_metrics_processor
|
||||
- embedded_ansible
|
||||
|
||||
roles:
|
||||
- ovirt.manageiq
|
||||
27
roles/ovirt.manageiq/examples/manageiq.yml
Normal file
27
roles/ovirt.manageiq/examples/manageiq.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
- name: oVirt ManageIQ deployment
|
||||
hosts: localhost
|
||||
connection: local
|
||||
gather_facts: false
|
||||
|
||||
vars_files:
|
||||
# Contains encrypted `engine_password` and `metrics_password`
|
||||
# varibale using ansible-vault
|
||||
- passwords.yml
|
||||
|
||||
vars:
|
||||
engine_fqdn: ovirt.example.com
|
||||
engine_user: admin@internal
|
||||
engine_cafile: /etc/pki/ovirt-engine/ca.pem
|
||||
|
||||
miq_qcow_url: http://releases.manageiq.org/manageiq-ovirt-gaprindashvili-3.qc2
|
||||
miq_vm_name: manageiq_g3
|
||||
miq_vm_cluster: mycluster
|
||||
|
||||
metrics_fqdn: metrics.example.com
|
||||
metrics_port: 8443
|
||||
metrics_user: admin
|
||||
|
||||
|
||||
roles:
|
||||
- ovirt.manageiq
|
||||
1
roles/ovirt.manageiq/examples/ovirt.manageiq
Symbolic link
1
roles/ovirt.manageiq/examples/ovirt.manageiq
Symbolic link
@@ -0,0 +1 @@
|
||||
../
|
||||
12
roles/ovirt.manageiq/examples/passwords.yml
Normal file
12
roles/ovirt.manageiq/examples/passwords.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
# As an example this file is keep in plaintext, if you want to
|
||||
# encrypt this file, please execute following command:
|
||||
#
|
||||
# $ ansible-vault encrypt passwords.yml
|
||||
#
|
||||
# It will ask you for a password, which you must then pass to
|
||||
# ansible interactively when executing the playbook.
|
||||
#
|
||||
# $ ansible-playbook myplaybook.yml --ask-vault-pass
|
||||
#
|
||||
engine_password: 123456
|
||||
Reference in New Issue
Block a user