blob: 965fafaff1f856ffc0785a515a4ae905ad3a02c8 [file] [log] [blame]
Wenqing Guf1801c52019-04-23 09:13:37 +02001---
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
20idf:
21 version: 0.1
22 net_config: &net_config
23 public:
24 interface: 0
25 network: 10.1.0.0
26 mask: 24
27 gateway: 10.1.0.1
28 dns:
29 - 192.71.20.162
30 - 192.71.20.35
31 mgmt:
32 interface: 1
33 network: 10.1.1.0
34 mask: 24
Fatih Degirmenci2ee97ab2019-08-21 09:20:22 +000035 neutron:
Wenqing Guf1801c52019-04-23 09:13:37 +020036 interface: 2
37 network: 10.1.2.0
38 mask: 24
Fatih Degirmenci2ee97ab2019-08-21 09:20:22 +000039 kolla: &idf_kolla
40 nodes_roles:
41 dell6: [controller]
42 dell7: [compute]
43 groups:
44 openstack:
45 - controller
46 - compute
47 hostnames:
48 dell6: controller00
49 dell7: compute00
50 network:
51 # network mapping
52 network_mapping:
53 # Admin network
54 net_admin: public
55 # Public network
56 net_public: public
57 # Management network used by installer components to communicate
58 net_mgmt: mgmt
59 # Internal network for communication between VNF
60 net_neutron: neutron
Wenqing Guf1801c52019-04-23 09:13:37 +020061 kubespray: &idf_kubespray
62 nodes_roles:
63 dell6: [k8s-cluster, kube-master, etcd, vault]
64 dell7: [k8s-cluster, kube-node]
65 groups:
66 k8s-cluster:
67 - kube-node
68 - kube-master
69 hostnames:
Fatih Degirmenci2b291852019-08-30 12:09:37 +020070 dell6: master0
71 dell7: node0
Wenqing Guf1801c52019-04-23 09:13:37 +020072 network:
73 # network mapping
74 network_mapping:
75 # Public network
76 net_public: public
77 # Management network used by installer components to communicate
78 net_mgmt: mgmt
79 # Extra network that can be used
Fatih Degirmenci2ee97ab2019-08-21 09:20:22 +000080 net_neutron: neutron
Wenqing Guf1801c52019-04-23 09:13:37 +020081
82engine:
83 pod_name: ericsson-pod1
84 net_config: *net_config
85
86 # net_config network to be used by the PXE
87 pxe_network: public
88
89 # net_config network to be used for the internet access
90 public_network: public
91
92 # interface to be used by the PXE
93 pxe_interface: ens192
94
95 installers:
Fatih Degirmenci2ee97ab2019-08-21 09:20:22 +000096 kolla: *idf_kolla
Wenqing Guf1801c52019-04-23 09:13:37 +020097 kubespray: *idf_kubespray
98
99# vim: set ts=2 sw=2 expandtab: