Fatih Degirmenci | d42b2f7 | 2020-07-02 00:14:16 +0000 | [diff] [blame] | 1 | --- |
| 2 | # ============LICENSE_START======================================================= |
eprasad | ef12f10 | 2020-11-25 08:57:22 +0000 | [diff] [blame] | 3 | # Copyright (C) 2020 The Nordix Foundation. All rights reserved. |
Fatih Degirmenci | d42b2f7 | 2020-07-02 00:14:16 +0000 | [diff] [blame] | 4 | # ================================================================================ |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # SPDX-License-Identifier: Apache-2.0 |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | # this file contains list of test frameworks used for testing onap stack. |
| 21 | # |
| 22 | # the format of the entry for a test framework is: |
| 23 | # |
| 24 | # framework: |
| 25 | # <test framework name>: |
| 26 | # scm: <scm type - typically git> |
| 27 | # src: <url to source code repository> |
| 28 | # version: <tag/sha/branch of the repository> |
| 29 | # <test suite>: |
| 30 | # image_name: <container image name> |
| 31 | # image_version: <container image sha256sum> |
eprasad | ef12f10 | 2020-11-25 08:57:22 +0000 | [diff] [blame] | 32 | framework: |
| 33 | xtesting: |
| 34 | infra-healthcheck: |
eprasad | 81108dc | 2020-12-29 11:49:10 +0000 | [diff] [blame] | 35 | image_name: xtesting-infra-healthcheck |
eprasad | ef12f10 | 2020-11-25 08:57:22 +0000 | [diff] [blame] | 36 | # latest xtesting-infra-healthcheck image as on 2020-24-11 |
| 37 | image_version: '75a85a5ef784e115186696ea9953dcbf0f2175401958c578aa708e2e894dea96' |
| 38 | healthcheck: |
eprasad | 81108dc | 2020-12-29 11:49:10 +0000 | [diff] [blame] | 39 | image_name: xtesting-healthcheck |
eprasad | ef12f10 | 2020-11-25 08:57:22 +0000 | [diff] [blame] | 40 | # latest xtesting-healthcheck image as on 2020-24-11 |
| 41 | image_version: '261eac403f0ecaa39194ac655042b7f1b87c2f9a57155f0f6ef5ed1eb53b766b' |
| 42 | |
eprasad | ada6d5b | 2020-12-07 17:18:33 +0000 | [diff] [blame] | 43 | # Test to peform with healthcheck testsuite. core, full, healthdist, postinstall and auto |
eprasad | 81108dc | 2020-12-29 11:49:10 +0000 | [diff] [blame] | 44 | # test tiers are supported by healthcheck testsuite. |
| 45 | healthcheck_test_tier: "{{ lookup('env','HEALTHCHECK_TEST_TIER')| default('auto', true) }}" |
Fatih Degirmenci | d42b2f7 | 2020-07-02 00:14:16 +0000 | [diff] [blame] | 46 | |
eprasad | ada6d5b | 2020-12-07 17:18:33 +0000 | [diff] [blame] | 47 | # Helm chart to ignore for automated testcases selection for installed onap components |
| 48 | healthcheck_test_ignore_list: "cassandra|cert|consul|platform|mariadb|robot" |
| 49 | |
eprasad | 81108dc | 2020-12-29 11:49:10 +0000 | [diff] [blame] | 50 | # xtesting container image registry |
| 51 | xtesting_image_repo: nexus3.onap.org:10001/onap |
| 52 | |
| 53 | # versions of docker as of 13.07.2020 needed for packaging |
| 54 | docker_ce_version: "5:19.03.12~3-0~ubuntu-bionic" |
| 55 | docker_ce_cli_version: "{{ docker_ce_version }}" |
| 56 | docker_registry_version: "2.7.1" |
| 57 | containerd_io_version: "1.2.13-2" |
| 58 | |
Akash Rajguru | a5e5764 | 2021-06-02 14:40:39 +0100 | [diff] [blame^] | 59 | # onap namespace |
eprasad | 81108dc | 2020-12-29 11:49:10 +0000 | [diff] [blame] | 60 | onap_namespace: "onap" |
| 61 | |
Fatih Degirmenci | d42b2f7 | 2020-07-02 00:14:16 +0000 | [diff] [blame] | 62 | # vim: set ts=2 sw=2 expandtab: |