blob: ffcdc909f680957cbe6b9dbb9f20b09c86046df2 [file] [log] [blame]
Fatih Degirmencid42b2f72020-07-02 00:14:16 +00001---
2# ============LICENSE_START=======================================================
eprasadef12f102020-11-25 08:57:22 +00003# Copyright (C) 2020 The Nordix Foundation. All rights reserved.
Fatih Degirmencid42b2f72020-07-02 00:14:16 +00004# ================================================================================
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>
eprasadef12f102020-11-25 08:57:22 +000032framework:
33 xtesting:
34 infra-healthcheck:
eprasad81108dc2020-12-29 11:49:10 +000035 image_name: xtesting-infra-healthcheck
eprasadef12f102020-11-25 08:57:22 +000036 # latest xtesting-infra-healthcheck image as on 2020-24-11
37 image_version: '75a85a5ef784e115186696ea9953dcbf0f2175401958c578aa708e2e894dea96'
38 healthcheck:
eprasad81108dc2020-12-29 11:49:10 +000039 image_name: xtesting-healthcheck
eprasadef12f102020-11-25 08:57:22 +000040 # latest xtesting-healthcheck image as on 2020-24-11
41 image_version: '261eac403f0ecaa39194ac655042b7f1b87c2f9a57155f0f6ef5ed1eb53b766b'
42
eprasadada6d5b2020-12-07 17:18:33 +000043# Test to peform with healthcheck testsuite. core, full, healthdist, postinstall and auto
eprasad81108dc2020-12-29 11:49:10 +000044# test tiers are supported by healthcheck testsuite.
45healthcheck_test_tier: "{{ lookup('env','HEALTHCHECK_TEST_TIER')| default('auto', true) }}"
Fatih Degirmencid42b2f72020-07-02 00:14:16 +000046
eprasadada6d5b2020-12-07 17:18:33 +000047# Helm chart to ignore for automated testcases selection for installed onap components
48healthcheck_test_ignore_list: "cassandra|cert|consul|platform|mariadb|robot"
49
eprasad81108dc2020-12-29 11:49:10 +000050# xtesting container image registry
51xtesting_image_repo: nexus3.onap.org:10001/onap
52
53# versions of docker as of 13.07.2020 needed for packaging
54docker_ce_version: "5:19.03.12~3-0~ubuntu-bionic"
55docker_ce_cli_version: "{{ docker_ce_version }}"
56docker_registry_version: "2.7.1"
57containerd_io_version: "1.2.13-2"
58
Akash Rajgurua5e57642021-06-02 14:40:39 +010059# onap namespace
eprasad81108dc2020-12-29 11:49:10 +000060onap_namespace: "onap"
61
Fatih Degirmencid42b2f72020-07-02 00:14:16 +000062# vim: set ts=2 sw=2 expandtab: