438aa71711
Start importing the TripleO Ansible validations from Clapper repository [1] into tripleo-validations. This commit lays down the structure for the ansible validations and documents how to write and run validations. Next commits will import existing validations one by one. [1] https://github.com/rthallisey/clapper Change-Id: I946d4e61bda1382c5299c7494fb994d870cdc56b Co-Authored-By: Tomas Sedovic <tsedovic@redhat.com>
34 lines
703 B
Plaintext
34 lines
703 B
Plaintext
# Your undercloud servers. This can be `localhost` if you cloned the
|
|
# repository on the undercloud:
|
|
[undercloud]
|
|
undercloud.example.com
|
|
|
|
[undercloud:vars]
|
|
#controller_vip=
|
|
|
|
[overcloud:children]
|
|
controller
|
|
compute
|
|
|
|
[controller]
|
|
controller.example.com
|
|
|
|
[controller:vars]
|
|
#put username here if different than compute nodes, ie stack user
|
|
##ansible_ssh_user=stack
|
|
|
|
[compute]
|
|
compute-1.example.com
|
|
compute-2.example.com
|
|
|
|
[compute:vars]
|
|
#put username here if different than compute nodes, ie stack user
|
|
##ansible_ssh_user=heat-admin
|
|
|
|
[all:vars]
|
|
# Username to SSH as:
|
|
ansible_ssh_user=stack
|
|
# Set to `true` if the SSH user is not root. Ansible will run `sudo`
|
|
# for commands requiring root:
|
|
ansible_sudo=true
|