okozachenko | 8713192 | 2022-04-09 01:04:53 +1000 | [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 | |
Mohammed Naser | 2145fc3 | 2023-01-29 23:23:03 +0000 | [diff] [blame] | 15 | _tempest_helm_values: |
Mohammed Naser | 2860a7c | 2023-03-22 15:31:24 +0000 | [diff] [blame] | 16 | endpoints: "{{ openstack_helm_endpoints | combine(_tempest_endpoint_values, recursive=True) }}" |
okozachenko | 8713192 | 2022-04-09 01:04:53 +1000 | [diff] [blame] | 17 | images: |
Michiel Piscaer | 60d09f9 | 2023-01-20 18:58:55 +0100 | [diff] [blame] | 18 | tags: "{{ atmosphere_images | vexxhost.atmosphere.openstack_helm_image_tags('tempest') }}" |
okozachenko | 8713192 | 2022-04-09 01:04:53 +1000 | [diff] [blame] | 19 | jobs: |
| 20 | run_tests: |
| 21 | restartPolicy: Never |
| 22 | backoffLimit: 0 |
| 23 | conf: |
| 24 | tempest: |
| 25 | service_available: |
| 26 | cinder: true |
| 27 | glance: true |
| 28 | horizon: true |
| 29 | neutron: true |
| 30 | nova: true |
Mohammed Naser | 491f6a5 | 2023-02-10 06:09:58 +0000 | [diff] [blame] | 31 | swift: true |
okozachenko | 8713192 | 2022-04-09 01:04:53 +1000 | [diff] [blame] | 32 | compute: |
| 33 | endpoint_type: internal |
| 34 | fixed_network_name: public |
| 35 | dashboard: |
| 36 | dashboard_url: "http://horizon-int.openstack.svc.cluster.local" |
| 37 | image: |
| 38 | endpoint_type: internal |
| 39 | network: |
| 40 | endpoint_type: internal |
| 41 | floating_network_name: public |
| 42 | shared_physical_network: false |
| 43 | placement: |
| 44 | endpoint_type: internal |
| 45 | validation: |
| 46 | image_ssh_user: cirros |
| 47 | volume: |
| 48 | endpoint_type: internal |
| 49 | object-storage: |
| 50 | endpoint_type: internal |
Mohammed Naser | 491f6a5 | 2023-02-10 06:09:58 +0000 | [diff] [blame] | 51 | reseller_admin_role: admin |
okozachenko | 8713192 | 2022-04-09 01:04:53 +1000 | [diff] [blame] | 52 | pvc: |
| 53 | enabled: false |
Mohammed Naser | 2860a7c | 2023-03-22 15:31:24 +0000 | [diff] [blame] | 54 | |
| 55 | _tempest_endpoint_values: |
| 56 | identity: |
| 57 | auth: |
| 58 | tempest: |
| 59 | region_name: "{{ openstack_helm_endpoints_tempest_region_name }}" |
| 60 | username: "tempest-{{ openstack_helm_endpoints_tempest_region_name }}" |
| 61 | password: "{{ openstack_helm_endpoints_tempest_keystone_password }}" |
| 62 | path: |
| 63 | # NOTE(mnaser): Heat uses the catalog and blindly adds a /v3 to the end of |
| 64 | # the endpoint. This is a workaround to make it work. |
| 65 | default: /v3 |