| --- |
| # ============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 |
| - centos7 |
| |
| 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) }}" |
| |
| # ------------------------------------------------------------------------------- |
| # Nordix: Docker version |
| # ------------------------------------------------------------------------------- |
| # NOTE (fdegir): docker is needed for bringing up local services for offline provisioning |
| 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" |
| |
| # NOTE (fdegir): installer is not really relevant for provisioning purposes |
| # but we still need it as the IDF contains installer types to at least name |
| # the nodes and generate inventory. Installer is set to kubespray since |
| # kubernetes will potentially be the stack to be installed on the nodes in |
| # most cases |
| installer_type: kubespray |
| |
| # vim: set ts=2 sw=2 expandtab: |