diff options
author | Tim Rozet <trozet@redhat.com> | 2015-12-02 17:32:52 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2015-12-02 17:34:21 -0500 |
commit | 95becb2b5a29cf272ac030695c2b76b9ee226b0d (patch) | |
tree | 67a7a32c4e455be0c678044bcb5be6074a568bfa /config/inventory | |
parent | 6306d6de5cc825d15667b0dd982847bcf373c07e (diff) |
Adds yaml files to use as input to Apex build/deploy
yaml inputs are broken up into:
-build settings
-deploy options
-network definition
-pod baremetal information
JIRA: APEX-53
Change-Id: Iee85b17beb37ce82bf9312dcce61e09ae924dfc5
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'config/inventory')
-rw-r--r-- | config/inventory/pod_example_settings.yaml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/config/inventory/pod_example_settings.yaml b/config/inventory/pod_example_settings.yaml new file mode 100644 index 00000000..f24b8e1c --- /dev/null +++ b/config/inventory/pod_example_settings.yaml @@ -0,0 +1,46 @@ +nodes: + node1: + mac_address: "10:23:45:67:89:AB" + ipmi_ip: 10.4.17.2 + ipmi_user: root + ipmi_pass: root + cpus: 2 + memory: 2048 + disk: 40 + arch: "x86_64" + node2: + mac_address: "10:23:45:67:89:AC" + ipmi_ip: 10.4.17.3 + ipmi_user: root + ipmi_pass: root + cpus: 2 + memory: 2048 + disk: 40 + arch: "x86_64" + node3: + mac_address: "10:23:45:67:89:AD" + ipmi_ip: 10.4.17.4 + ipmi_user: root + ipmi_pass: root + cpus: 2 + memory: 2048 + disk: 40 + arch: "x86_64" + node4: + mac_address: "10:23:45:67:89:AE" + ipmi_ip: 10.4.17.5 + ipmi_user: root + ipmi_pass: root + cpus: 2 + memory: 2048 + disk: 40 + arch: "x86_64" + node5: + mac_address: "10:23:45:67:89:AF" + ipmi_ip: 10.4.17.6 + ipmi_user: root + ipmi_pass: root + cpus: 2 + memory: 2048 + disk: 40 + arch: "x86_64" |