diff options
author | Tim Rozet <trozet@redhat.com> | 2015-12-08 10:39:51 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2015-12-15 14:45:19 -0500 |
commit | 98b17ebe76b5a33c1ee3771cce8e3cc06d49732f (patch) | |
tree | 4518ab5f3625770e6940de6ec073ac5b7921e6d3 | |
parent | 7a56293471779f921a104c4dce04f7cca6d768ee (diff) |
Common inventory file format example
Format of pod settings to input into every installer.
Change-Id: Iee898ee7c1d6e0a34310f1fc28f8dd5da7e0a070
Signed-off-by: Tim Rozet <trozet@redhat.com>
-rw-r--r-- | common/config/inventory/example.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/common/config/inventory/example.yaml b/common/config/inventory/example.yaml new file mode 100644 index 0000000..976df0e --- /dev/null +++ b/common/config/inventory/example.yaml @@ -0,0 +1,13 @@ +nodes: + - name: node3-control + tags: control #optional param, other valid value "compute" + arch: "x86_64" + mac_address: "10:23:45:67:89:AC" #pxe boot interface mac + cpus: 2 #required only for virtual deployments + memory: 2048 #required only for virtual deployments + disk: 40 #required only for virtual deployments + power: + type: ipmi + address: 10.4.7.3 + user: root + pass: root |