afenner | 4a86b72 | 2020-07-27 08:53:27 +0100 | [diff] [blame] | 1 | --- |
| 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========================================================= |
| 19 | installers: |
| 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. |
| 31 | scenarios: |
| 32 | - onap-sdc-nofeature |
afenner | 01b745a | 2020-10-29 17:44:08 +0000 | [diff] [blame] | 33 | - onap-full-nofeature |
afenner | 4a86b72 | 2020-07-27 08:53:27 +0100 | [diff] [blame] | 34 | - onap-all-nofeature |
| 35 | |
| 36 | # NOTE (fdegir): set default deploy scenario for the stack |
| 37 | deploy_scenario: "{{ lookup('env', 'DEPLOY_SCENARIO') | default('onap-sdc-nofeature', true) }}" |
| 38 | |
| 39 | # ------------------------------------------------------------------------------- |
| 40 | # ONAP: version |
| 41 | # ------------------------------------------------------------------------------- |
| 42 | onap_namespace: "onap" |
| 43 | storage_classname: "block-storage" |
| 44 | storage_filesystem_classname: "csi-cephfs" |
| 45 | onap_masterpassword: "nordix" |
| 46 | |
| 47 | # NOTE (fdegir): versions of docker as of 13.07.2020 needed for packaging |
| 48 | docker_ce_version: "5:19.03.12~3-0~ubuntu-bionic" |
| 49 | docker_ce_cli_version: "{{ docker_ce_version }}" |
| 50 | docker_registry_version: "2.7.1" |
| 51 | containerd_io_version: "1.2.13-2" |
| 52 | |
| 53 | profilename: "{{ lookup('env', 'ONAP_PROFILE') | default('sdc', true) }}" |
Cian Johnston | 7e885eb | 2021-05-14 09:29:31 +0000 | [diff] [blame] | 54 | onap_version: "{{ lookup('env', 'ONAP_VERSION') | default('8.0.0+latest', true) }}" |
| 55 | |
| 56 | chartmuseum_version: "v0.13.1" |
| 57 | chartmuseum_download_url: "https://get.helm.sh/chartmuseum-{{ chartmuseum_version }}-linux-amd64.tar.gz" |
| 58 | chartmusem_local_storage_dir: "/var/lib/chartmuseum/storage" |
| 59 | |
afenner | 4a86b72 | 2020-07-27 08:53:27 +0100 | [diff] [blame] | 60 | # vim: set ts=2 sw=2 expandtab: |