blob: 0e1428531a87349caebe0dc06de62165048befd4 [file] [log] [blame]
afenner4a86b722020-07-27 08:53:27 +01001---
2# ============LICENSE_START=======================================================
3# Copyright (C) 2019 The Nordix Foundation. All rights reserved.
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=========================================================
19installers:
20 oom:
21 scm: git
22 src: https://gerrit.nordix.org/infra/installer/oom
23 version: "{{ lookup('env', 'NORDIX_OOM_VERSION') | default('master', true) }}"
24 refspec: "{{ lookup('env', 'NORDIX_OOM_REFSPEC') | default(omit) }}"
25
26# NOTE (fdegir): this is only the list of scenarios implemented within
27# installer repository and does not list what apps are for curated for
28# them as it is self documented within the scenario playbook in installer
29# repository. Curated apps are not listed separately either as they are
30# similar to scenarios; they are available in installer repository.
31scenarios:
32 - onap-sdc-nofeature
afenner01b745a2020-10-29 17:44:08 +000033 - onap-full-nofeature
afenner4a86b722020-07-27 08:53:27 +010034 - onap-all-nofeature
35
36# NOTE (fdegir): set default deploy scenario for the stack
37deploy_scenario: "{{ lookup('env', 'DEPLOY_SCENARIO') | default('onap-sdc-nofeature', true) }}"
38
39# -------------------------------------------------------------------------------
40# ONAP: version
41# -------------------------------------------------------------------------------
42onap_namespace: "onap"
43storage_classname: "block-storage"
44storage_filesystem_classname: "csi-cephfs"
45onap_masterpassword: "nordix"
46
47# NOTE (fdegir): versions of docker as of 13.07.2020 needed for packaging
48docker_ce_version: "5:19.03.12~3-0~ubuntu-bionic"
49docker_ce_cli_version: "{{ docker_ce_version }}"
50docker_registry_version: "2.7.1"
51containerd_io_version: "1.2.13-2"
52
53profilename: "{{ lookup('env', 'ONAP_PROFILE') | default('sdc', true) }}"
Cian Johnston7e885eb2021-05-14 09:29:31 +000054onap_version: "{{ lookup('env', 'ONAP_VERSION') | default('8.0.0+latest', true) }}"
55
56chartmuseum_version: "v0.13.1"
57chartmuseum_download_url: "https://get.helm.sh/chartmuseum-{{ chartmuseum_version }}-linux-amd64.tar.gz"
58chartmusem_local_storage_dir: "/var/lib/chartmuseum/storage"
59
afenner4a86b722020-07-27 08:53:27 +010060# vim: set ts=2 sw=2 expandtab: