| --- |
| # ============LICENSE_START======================================================= |
| # Copyright (C) 2019 The Nordix Foundation. All rights reserved. |
| # ================================================================================ |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| # SPDX-License-Identifier: Apache-2.0 |
| # ============LICENSE_END========================================================= |
| |
| distros: |
| - ubuntu1804 |
| |
| provisioners: |
| bifrost: |
| scm: git |
| src: https://gerrit.nordix.org/infra/provisioner/bifrost.git |
| version: "{{ lookup('env', 'NORDIX_BIFROST_VERSION') | default('master', true) }}" |
| refspec: "{{ lookup('env', 'NORDIX_BIFROST_REFSPEC') | default(omit) }}" |
| |
| installers: |
| kolla: |
| scm: git |
| src: https://gerrit.nordix.org/infra/installer/kolla.git |
| version: "{{ lookup('env', 'NORDIX_KOLLA_VERSION') | default('master', true) }}" |
| refspec: "{{ lookup('env', 'NORDIX_KOLLA_REFSPEC') | default(omit) }}" |
| |
| scenarios: |
| - os-nosdn-nofeature |
| |
| # NOTE (fdegir): set default deploy scenario for the stack |
| deploy_scenario: "{{ lookup('env', 'DEPLOY_SCENARIO') | default('os-nosdn-nofeature', true) }}" |
| |
| # NOTE (sriramy): set default deployment image version to v1. |
| # v2 doesn't have growroot, to be able to perform the needed |
| # partitioning for rook/ceph deployment. |
| # Openstack/kolla uses loopback device instead. |
| deployment_image_version: "{{ lookup('env', 'DEPLOYMENT_IMAGE_VERSION') | default('v1', true) }}" |
| |
| # ------------------------------------------------------------------------------- |
| # Nordix: Docker version |
| # ------------------------------------------------------------------------------- |
| # NOTE (fdegir): docker is needed for bringing up local services for offline deployment |
| docker_ce_version: "{{ lookup('env', 'DOCKER_CE_VERSION') | default('5:18.09.9~3-0~ubuntu-bionic', true) }}" |
| docker_ce_cli_version: "{{ docker_ce_version }}" |
| docker_registry_version: "2.7.1" |
| containerd_io_version: "1.2.6-3" |
| |
| # ------------------------------------------------------------------------------- |
| # OpenStack: Release codename, version |
| # ------------------------------------------------------------------------------- |
| openstack_version: "{{ lookup('env', 'OPENSTACK_VERSION') | default('train', true) }}" |
| |
| # vim: set ts=2 sw=2 expandtab: |