Add nordix baremetal pod info
Change-Id: I46167d496570f2ff19a0c4a7d3d52f0f9204a6a3
diff --git a/pods/ericsson-pod1-idf.yml b/pods/ericsson-pod1-idf.yml
new file mode 100644
index 0000000..3f2c706
--- /dev/null
+++ b/pods/ericsson-pod1-idf.yml
@@ -0,0 +1,76 @@
+---
+# ============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
+ extra:
+ interface: 2
+ network: 10.1.2.0
+ mask: 24
+ kubespray: &idf_kubespray
+ nodes_roles:
+ dell6: [k8s-cluster, kube-master, etcd, vault]
+ dell7: [k8s-cluster, kube-node]
+ groups:
+ k8s-cluster:
+ - kube-node
+ - kube-master
+ hostnames:
+ dell6: master1
+ dell7: node1
+ 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_extra: extra
+
+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:
+ kubespray: *idf_kubespray
+
+# vim: set ts=2 sw=2 expandtab: