diff options
Diffstat (limited to 'config/pod-config.yml')
-rw-r--r-- | config/pod-config.yml | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/config/pod-config.yml b/config/pod-config.yml new file mode 100644 index 00000000..49c90cb7 --- /dev/null +++ b/config/pod-config.yml @@ -0,0 +1,86 @@ + +nodes: + - name: host1 + tags: control + arch: "x86_64" + mac_address: '11:22:33:44:55' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.3 + user: root + pass: root + + - name: host2 + tags: control + arch: "x86_64" + mac_address: '11:22:33:44:56' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.4 + user: root + pass: root + + - name: host3 + tags: control + arch: "x86_64" + mac_address: '11:22:33:44:57' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.5 + user: root + pass: root + + - name: host4 + tags: compute + arch: "x86_64" + mac_address: '11:22:33:44:57' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.6 + user: root + pass: root + + - name: host5 + tags: compute + arch: "x86_64" + mac_address: '11:22:33:44:58' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.7 + user: root + pass: root |