blob: aeb1edf0941b46d23f71942d08acfd6ba8500b8a [file] [log] [blame]
---
# ============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=========================================================
idf:
version: 0.1
net_config: &net_config
public:
interface: 0
network: 10.1.0.0
mask: 24
gateway: 10.1.0.1
dns:
- 192.71.20.162
- 192.71.20.35
mgmt:
interface: 1
network: 10.1.1.0
mask: 24
neutron:
interface: 2
network: 10.1.2.0
mask: 24
kolla: &idf_kolla
nodes_roles:
dell1: [controller, compute]
dell2: [compute]
dell3: [compute]
dell4: [compute]
dell5: [compute]
groups:
openstack:
- controller
- compute
hostnames:
dell1: controller00
dell2: compute00
dell3: compute01
dell4: compute02
dell5: compute03
network:
# network mapping
network_mapping:
# Admin network
net_admin: public
# Public network
net_public: public
# Management network used by installer components to communicate
net_mgmt: mgmt
# Internal network for communication between VNF
net_neutron: neutron
storage:
volume:
# Cinder storage type, options are ["size", "device"]
# Using size, will result in creation of a loopback device of that size
size: "200G"
# Cinder storage driver, options are ["lvm", "ceph"]
driver: "ceph"
# Cinder backup storage driver, options are ["nfs"]
backup_driver: "nfs"
kubespray: &idf_kubespray
nodes_roles:
dell1: [k8s-cluster, kube-master, etcd, vault]
dell2: [k8s-cluster, kube-node]
dell3: [k8s-cluster, kube-node]
dell4: [k8s-cluster, kube-node]
dell5: [k8s-cluster, kube-node]
groups:
k8s-cluster:
- kube-node
- kube-master
hostnames:
dell1: master0
dell2: node0
dell3: node1
dell4: node2
dell5: node3
network:
# network mapping
network_mapping:
# Public network
net_public: public
# Management network used by installer components to communicate
net_mgmt: mgmt
# Extra network that can be used
net_neutron: neutron
engine:
pod_name: ericsson-pod3
net_config: *net_config
# net_config network to be used by the PXE
pxe_network: public
# net_config network to be used for the internet access
public_network: public
# interface to be used by the PXE
pxe_interface: ens160
installers:
kolla: *idf_kolla
kubespray: *idf_kubespray
# vim: set ts=2 sw=2 expandtab: