Wenqing Gu | f1801c5 | 2019-04-23 09:13:37 +0200 | [diff] [blame^] | 1 | --- |
| 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 | |
| 20 | idf: |
| 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 |
| 35 | extra: |
| 36 | interface: 2 |
| 37 | network: 10.1.2.0 |
| 38 | mask: 24 |
| 39 | kubespray: &idf_kubespray |
| 40 | nodes_roles: |
| 41 | dell6: [k8s-cluster, kube-master, etcd, vault] |
| 42 | dell7: [k8s-cluster, kube-node] |
| 43 | groups: |
| 44 | k8s-cluster: |
| 45 | - kube-node |
| 46 | - kube-master |
| 47 | hostnames: |
| 48 | dell6: master1 |
| 49 | dell7: node1 |
| 50 | network: |
| 51 | # network mapping |
| 52 | network_mapping: |
| 53 | # Public network |
| 54 | net_public: public |
| 55 | # Management network used by installer components to communicate |
| 56 | net_mgmt: mgmt |
| 57 | # Extra network that can be used |
| 58 | net_extra: extra |
| 59 | |
| 60 | engine: |
| 61 | pod_name: ericsson-pod1 |
| 62 | net_config: *net_config |
| 63 | |
| 64 | # net_config network to be used by the PXE |
| 65 | pxe_network: public |
| 66 | |
| 67 | # net_config network to be used for the internet access |
| 68 | public_network: public |
| 69 | |
| 70 | # interface to be used by the PXE |
| 71 | pxe_interface: ens192 |
| 72 | |
| 73 | installers: |
| 74 | kubespray: *idf_kubespray |
| 75 | |
| 76 | # vim: set ts=2 sw=2 expandtab: |