Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 1 | # Copyright (c) 2022 VEXXHOST, Inc. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | |
| 15 | dependency: |
| 16 | name: galaxy |
| 17 | driver: |
| 18 | name: delegated |
| 19 | platforms: |
| 20 | - name: ctl1 |
| 21 | groups: &controller_groups |
| 22 | - controllers |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 23 | - name: ctl2 |
| 24 | groups: *controller_groups |
| 25 | - name: ctl3 |
| 26 | groups: *controller_groups |
| 27 | - name: nvme1 |
| 28 | groups: &nvme_groups |
| 29 | - cephs |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 30 | - name: nvme2 |
| 31 | groups: *nvme_groups |
| 32 | - name: nvme3 |
| 33 | groups: *nvme_groups |
| 34 | - name: kvm1 |
| 35 | groups: &kvm_groups |
| 36 | - computes |
| 37 | - name: kvm2 |
| 38 | groups: *kvm_groups |
| 39 | provisioner: |
| 40 | name: ansible |
Mohammed Naser | 206e5f8 | 2022-03-16 20:21:14 -0400 | [diff] [blame] | 41 | options: |
| 42 | extra-vars: "@${MOLECULE_EPHEMERAL_DIRECTORY}/secrets.yml" |
| 43 | config_options: |
| 44 | ssh_connection: |
| 45 | pipelining: true |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 46 | inventory: |
| 47 | group_vars: |
| 48 | all: |
| 49 | atmosphere_image_repository: us-docker.pkg.dev/vexxhost-infra/openstack |
Mohammed Naser | 33ddc7b | 2022-03-18 20:14:57 -0400 | [diff] [blame^] | 50 | ceph_mon_fsid: 441193d8-fed9-485b-87f4-09245ddc1fe7 |
| 51 | ceph_mon_public_network: 10.96.240.0/24 |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 52 | kubernetes_hostname: 10.96.240.10 |
Mohammed Naser | 33ddc7b | 2022-03-18 20:14:57 -0400 | [diff] [blame^] | 53 | # OpenStack |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 54 | openstack_helm_endpoints_region_name: RegionOne |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 55 | # Keystone |
| 56 | openstack_helm_endpoints_keystone_api_host: "identity.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 57 | # Glance |
| 58 | openstack_helm_endpoints_glance_api_host: "image.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 59 | # Cinder |
| 60 | openstack_helm_endpoints_cinder_api_host: "volume.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 61 | # Placement |
| 62 | openstack_helm_endpoints_placement_api_host: "placement.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 63 | # Neutron |
| 64 | openstack_helm_endpoints_neutron_api_host: "network.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 65 | openstack_helm_neutron_values: |
| 66 | conf: |
| 67 | auto_bridge_add: |
| 68 | br-ex: ens4 |
| 69 | # Nova |
| 70 | openstack_helm_endpoints_nova_api_host: "compute.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
| 71 | openstack_helm_endpoints_nova_novnc_host: "vnc.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 72 | # Ironic |
| 73 | openstack_helm_endpoints_ironic_api_host: "baremetal.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 74 | # Designate |
| 75 | openstack_helm_endpoints_designate_api_host: "dns.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 76 | # Octavia |
| 77 | openstack_helm_endpoints_octavia_api_host: "load-balancer.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | ec81491 | 2022-03-13 01:53:37 -0500 | [diff] [blame] | 78 | # Senlin |
| 79 | openstack_helm_endpoints_senlin_api_host: "clustering.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 80 | # Heat |
| 81 | openstack_helm_endpoints_heat_api_host: "orchestration.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 82 | openstack_helm_endpoints_heat_cfn_api_host: "cloudformation.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 83 | # Horizon |
| 84 | openstack_helm_endpoints_horizon_api_host: "dashboard.{{ hostvars['ctl1']['ansible_host'].replace('.', '-') }}.nip.io" |
Mohammed Naser | 33ddc7b | 2022-03-18 20:14:57 -0400 | [diff] [blame^] | 85 | controllers: |
| 86 | kubernetes_keepalived_vrid: 42 |
| 87 | kubernetes_keepalived_interface: ens3 |
| 88 | kubernetes_keepalived_vip: 10.96.240.10 |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 89 | cephs: |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 90 | ceph_osd_devices: |
| 91 | - /dev/vdb |
| 92 | - /dev/vdc |
| 93 | - /dev/vdd |
| 94 | verifier: |
| 95 | name: testinfra |