
Add vexxhost account credentials to our various clouds.yaml files. This covers the all clouds, ansible, and nodepool clouds.yaml files. With this in place we can work to deploying tests onto vexxhost. Change-Id: I42101e9acc9f62897a3f63b85dd34a14adcf2394
61 lines
2.3 KiB
Plaintext
61 lines
2.3 KiB
Plaintext
ansible:
|
|
use_hostnames: True
|
|
cache:
|
|
expiration_time: 86400
|
|
path: /var/cache/ansible-inventory
|
|
clouds:
|
|
openstackci-bluebox:
|
|
region_name: RegionOne
|
|
auth:
|
|
auth_url: https://montytaylor-sjc.openstack.blueboxgrid.com:5001/v2.0
|
|
username: <%= @puppetmaster_clouds['openstackci_bluebox_username'] %>
|
|
password: <%= @puppetmaster_clouds['openstackci_bluebox_password'] %>
|
|
project_name: <%= @puppetmaster_clouds['openstackci_bluebox_project_name'] %>
|
|
openstackci-internap:
|
|
region_name: nyj01
|
|
profile: internap
|
|
auth:
|
|
username: <%= @puppetmaster_clouds['openstackci_internap_username'] %>
|
|
password: <%= @puppetmaster_clouds['openstackci_internap_password'] %>
|
|
project_name: <%= @puppetmaster_clouds['openstackci_internap_project_name'] %>
|
|
openstackci-ovh:
|
|
regions:
|
|
- GRA1
|
|
- SBG1
|
|
- BHS1
|
|
profile: ovh
|
|
auth:
|
|
username: <%= @puppetmaster_clouds['openstackci_ovh_username'] %>
|
|
password: <%= @puppetmaster_clouds['openstackci_ovh_password'] %>
|
|
project_name: <%= @puppetmaster_clouds['openstackci_ovh_project_name'] %>
|
|
openstackci-rax:
|
|
regions:
|
|
- DFW
|
|
- ORD
|
|
- IAD
|
|
profile: rackspace
|
|
auth:
|
|
username: <%= @puppetmaster_clouds['openstackci_rax_username'] %>
|
|
password: <%= @puppetmaster_clouds['openstackci_rax_password'] %>
|
|
project_id: <%= @puppetmaster_clouds['openstackci_rax_project_id'] %>
|
|
openstackci-osic:
|
|
region_name: RegionOne
|
|
auth:
|
|
auth_url: https://172.99.101.17:5000
|
|
username: <%= @puppetmaster_clouds['openstackci_osic_username'] %>
|
|
password: <%= @puppetmaster_clouds['openstackci_osic_password'] %>
|
|
project_id: <%= @puppetmaster_clouds['openstackci_osic_project_id'] %>
|
|
project_domain_name: default
|
|
user_domain_name: default
|
|
identity_api_version: '3'
|
|
# Since DNS is not setup for the CN in the self signed cert we are not
|
|
# able to verify even if we provide the cert to check against.
|
|
verify: False
|
|
openstackci-vexxhost:
|
|
region_name: ca-ymq-1
|
|
profile: vexxhost
|
|
auth:
|
|
username: '<%= @puppetmaster_clouds['openstackci_vexxhost_username'] %>'
|
|
password: '<%= @puppetmaster_clouds['openstackci_vexxhost_password'] %>'
|
|
project_name: '<%= @puppetmaster_clouds['openstackci_vexxhost_project_name'] %>'
|