summaryrefslogtreecommitdiffstats
path: root/config/installers/compass4nfv/os-onos-sfc-ha.yml.j2
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-18 20:21:35 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-18 20:25:00 +0200
commit1a1c03d865c55872d5912ac60ce4a1af5e814de2 (patch)
tree058769bed59d1d1af4e2630c1f14c0992db569de /config/installers/compass4nfv/os-onos-sfc-ha.yml.j2
parent74cdf3ea93fb3a91ed03924fdb17076d36fc4cb9 (diff)
config/installers: Add PDF installer adapters
Previously, PDF installer adapters resided in securedlab git repo, but since we want to be able to use it in both securedlab (for validation of new PDF files during verify jobs) and installer projects (for actually parsing the PDF file into usable installer inputs), we decided to move them to a common location, also available for regular users. This change merely replicates the current adapter files from securedlab git repo for the following projects: - apex; - compass4nfv; - daisy; - joid; Change-Id: Ic4bd75e1b2dc339c15cd4943dfc5a1c74c68b094 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'config/installers/compass4nfv/os-onos-sfc-ha.yml.j2')
-rw-r--r--config/installers/compass4nfv/os-onos-sfc-ha.yml.j281
1 files changed, 81 insertions, 0 deletions
diff --git a/config/installers/compass4nfv/os-onos-sfc-ha.yml.j2 b/config/installers/compass4nfv/os-onos-sfc-ha.yml.j2
new file mode 100644
index 00000000..746ca361
--- /dev/null
+++ b/config/installers/compass4nfv/os-onos-sfc-ha.yml.j2
@@ -0,0 +1,81 @@
+##############################################################################
+# Copyright (c) 2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+---
+TYPE: baremetal
+FLAVOR: cluster
+POWER_TOOL: '{{ conf['jumphost']['remote_params']['type'] }}tool' #expects string ipmitool
+
+ipmiUser: {{ conf['jumphost']['remote_params']['user'] }}
+ipmiPass: {{ conf['jumphost']['remote_params']['pass'] }}
+ipmiVer: '{{ conf['jumphost']['remote_params']['versions'][0] }}'
+
+onos_sfc: "Enable"
+
+hosts:
+ - name: {{ conf['nodes'][0]['name'] }}
+ mac: '{{ conf['nodes'][0]['remote_management']['mac_address'] }}' #is this the ipmi mac address?
+ interfaces:
+ - eth1: '{{ conf['nodes'][0]['interfaces'][0]['mac_address'] }}'
+ - eth2: '{{ conf['nodes'][0]['interfaces'][1]['mac_address'] }}'
+ - eth3: '{{ conf['nodes'][0]['interfaces'][2]['mac_address'] }}'
+ ipmiIp: {{ conf['nodes'][0]['remote_management']['address'] }}
+ roles:
+ - controller
+ - ha
+ - onos
+ - ceph-adm
+ - ceph-mon
+
+ - name: {{ conf['nodes'][1]['name'] }}
+ mac: '{{ conf['nodes'][1]['remote_management']['mac_address'] }}' #is this the ipmi mac address?
+ interfaces:
+ - eth1: '{{ conf['nodes'][1]['interfaces'][0]['mac_address'] }}'
+ - eth2: '{{ conf['nodes'][1]['interfaces'][1]['mac_address'] }}'
+ - eth3: '{{ conf['nodes'][1]['interfaces'][2]['mac_address'] }}'
+ ipmiIp: {{ conf['nodes'][1]['remote_management']['address'] }}
+ roles:
+ - controller
+ - ha
+ - onos
+ - ceph-mon
+
+ - name: {{ conf['nodes'][2]['name'] }}
+ mac: '{{ conf['nodes'][2]['remote_management']['mac_address'] }}' #is this the ipmi mac address?
+ interfaces:
+ - eth1: '{{ conf['nodes'][2]['interfaces'][0]['mac_address'] }}'
+ - eth2: '{{ conf['nodes'][2]['interfaces'][1]['mac_address'] }}'
+ - eth3: '{{ conf['nodes'][2]['interfaces'][2]['mac_address'] }}'
+ ipmiIp: {{ conf['nodes'][2]['remote_management']['address'] }}
+ roles:
+ - controller
+ - ha
+ - onos
+ - ceph-mon
+
+ - name: {{ conf['nodes'][3]['name'] }}
+ mac: '{{ conf['nodes'][3]['remote_management']['mac_address'] }}' #is this the ipmi mac address?
+ interfaces:
+ - eth1: '{{ conf['nodes'][3]['interfaces'][0]['mac_address'] }}'
+ - eth2: '{{ conf['nodes'][3]['interfaces'][1]['mac_address'] }}'
+ - eth3: '{{ conf['nodes'][3]['interfaces'][2]['mac_address'] }}'
+ ipmiIp: {{ conf['nodes'][3]['remote_management']['address'] }}
+ roles:
+ - compute
+ - ceph-osd
+
+ - name: {{ conf['nodes'][4]['name'] }}
+ mac: '{{ conf['nodes'][4]['remote_management']['mac_address'] }}' #is this the ipmi mac address?
+ interfaces:
+ - eth1: '{{ conf['nodes'][4]['interfaces'][0]['mac_address'] }}'
+ - eth2: '{{ conf['nodes'][4]['interfaces'][1]['mac_address'] }}'
+ - eth3: '{{ conf['nodes'][4]['interfaces'][2]['mac_address'] }}'
+ ipmiIp: {{ conf['nodes'][4]['remote_management']['address'] }}
+ roles:
+ - compute
+ - ceph-osd