blob: e166b734c14b2359cff26ab0cd46ca05632e6cd4 [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:
dell6: [controller, compute]
dell7: [compute]
groups:
openstack:
- controller
- compute
hostnames:
dell6: controller00
dell7: compute00
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:
size: "25G"
# Cinder storage driver, options are ["lvm", "ceph"]
driver: "ceph"
# Cinder backup storage driver, options are ["nfs"]
backup_driver: "nfs"
kubespray: &idf_kubespray
nodes_roles:
dell6: [k8s-cluster, kube-node, kube-master, etcd, vault]
dell7: [k8s-cluster, kube-node]
groups:
k8s-cluster:
- kube-node
- kube-master
hostnames:
dell6: master0
dell7: node0
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-pod1
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: ens192
installers:
kolla: *idf_kolla
kubespray: *idf_kubespray
# vim: set ts=2 sw=2 expandtab: