
This manages the clouds.yaml files in ansible so that we can get them updated automatically on bridge.openstack.org (which does not puppet). Co-Authored-By: James E. Blair <jeblair@redhat.com> Depends-On: https://review.openstack.org/598378 Change-Id: I2071f2593f57024bc985e18eaf1ffbf6f3d38140
118 lines
3.6 KiB
Django/Jinja
118 lines
3.6 KiB
Django/Jinja
ansible:
|
|
fail_on_errors: False
|
|
expand_hostvars: False
|
|
use_hostnames: True
|
|
cache:
|
|
expiration_time: 86400
|
|
path: /var/cache/ansible-inventory
|
|
expiration:
|
|
server: 5
|
|
port: 5
|
|
floating-ip: 5
|
|
clouds:
|
|
openstackci-inap:
|
|
profile: internap
|
|
auth:
|
|
username: '{{ clouds.openstackci_internap_username }}'
|
|
password: '{{ clouds.openstackci_internap_password }}'
|
|
project_name: '{{ clouds.openstackci_internap_project_name }}'
|
|
regions:
|
|
- name: mtl01
|
|
values:
|
|
networks:
|
|
- name: inap-17301-WAN1102
|
|
routes_externally: True
|
|
openstackci-ovh:
|
|
regions:
|
|
- GRA1
|
|
- SBG1
|
|
- BHS1
|
|
profile: ovh
|
|
# OVH has a weird new ipv6 setup that we can't handle properly
|
|
# for now ignore ipv6
|
|
force_ipv4: true
|
|
auth:
|
|
username: '{{ clouds.openstackci_ovh_username }}'
|
|
password: '{{ clouds.openstackci_ovh_password }}'
|
|
project_name: '{{ clouds.openstackci_ovh_project_name }}'
|
|
openstackci-rax:
|
|
regions:
|
|
- DFW
|
|
- ORD
|
|
- IAD
|
|
profile: rackspace
|
|
auth:
|
|
username: '{{ clouds.openstackci_rax_username }}'
|
|
password: '{{ clouds.openstackci_rax_password }}'
|
|
project_id: '{{ clouds.openstackci_rax_project_id }}'
|
|
openstackci-vexxhost:
|
|
regions:
|
|
- ca-ymq-1
|
|
- sjc1
|
|
profile: vexxhost
|
|
auth:
|
|
username: '{{ clouds.openstackci_vexxhost_username }}'
|
|
password: '{{ clouds.openstackci_vexxhost_password }}'
|
|
project_name: '{{ clouds.openstackci_vexxhost_project_name }}'
|
|
project_domain_name: default
|
|
user_domain_name: default
|
|
openstackci-citycloud:
|
|
regions:
|
|
- Lon1
|
|
- Kna1
|
|
- La1
|
|
- Sto2
|
|
profile: citycloud
|
|
auth:
|
|
username: '{{ clouds.openstackci_citycloud_username }}'
|
|
password: '{{ clouds.openstackci_citycloud_password }}'
|
|
project_id: 656841f5d46e4b0889129d1fc20bd0b8
|
|
project_domain_id: a5e7d1a8f25b42b081cf89d1130638da
|
|
user_domain_id: a5e7d1a8f25b42b081cf89d1130638da
|
|
openstackci-linaro:
|
|
regions:
|
|
- RegionOne
|
|
auth:
|
|
auth_url: https://cn1.linaro.cloud:35357
|
|
username: '{{ clouds.openstackci_linaro_username }}'
|
|
password: '{{ clouds.openstackci_linaro_password }}'
|
|
project_name: '{{ clouds.openstackci_linaro_project_name }}'
|
|
project_domain_name: default
|
|
user_domain_name: default
|
|
openstackci-limestone:
|
|
regions:
|
|
- name: RegionOne
|
|
values:
|
|
networks:
|
|
- name: "Gateway Network"
|
|
routes_externally: false
|
|
routes_ipv6_externally: true
|
|
nat_destination: true
|
|
- name: "Flat External"
|
|
routes_externally: true
|
|
nat_source: true
|
|
auth:
|
|
auth_url: https://osa.continuous.pw:5000
|
|
username: '{{ clouds.openstackci_limestone_username }}'
|
|
password: '{{ clouds.openstackci_limestone_password }}'
|
|
project_name: '{{ clouds.openstackci_limestone_project_name }}'
|
|
user_domain_name: default
|
|
project_domain_name: default
|
|
identity_api_version: 3
|
|
cacert: /etc/openstack/limestone_cacert.pem
|
|
openstackci-packethost:
|
|
regions:
|
|
- name: us-west-1
|
|
values:
|
|
networks:
|
|
- name: openstackci-net
|
|
default_interface: True
|
|
auth:
|
|
auth_url: https://packet.platform9.net/keystone
|
|
username: '{{ clouds.openstackci_packethost_username }}'
|
|
password: '{{ clouds.openstackci_packethost_password }}'
|
|
project_name: '{{ clouds.openstackci_packethost_project_name }}'
|
|
user_domain_name: default
|
|
project_domain_name: default
|
|
identity_api_version: '3'
|