From: Martin Kulhavy Date: Mon, 28 Aug 2017 10:09:54 +0000 (+0300) Subject: Add an example and blank labconfig files X-Git-Tag: opnfv-5.0.RC1~26 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F40381%2F1;p=joid.git Add an example and blank labconfig files The currently available labconfig files may be confusing and are little documented. There should be one example config file which is kept up-to-date and well commented. Change-Id: Ic765f647ded25ea43cc601153fde9eee9c233790 Signed-off-by: Martin Kulhavy --- diff --git a/labconfig/example/blank/labconfig.yaml b/labconfig/example/blank/labconfig.yaml new file mode 100644 index 00000000..991e409e --- /dev/null +++ b/labconfig/example/blank/labconfig.yaml @@ -0,0 +1,45 @@ +lab: + location: # TODO + racks: + - rack: # TODO + nodes: + - name: # TODO + architecture: x86_64 + roles: [] # TODO + nics: + - ifname: eth0 + spaces: [admin] + mac: [""] # TODO + - ifname: eth1 + spaces: [floating] + mac: [""] # TODO + power: + type: ipmi + address: # TODO + user: # TODO + pass: # TODO + floating-ip-range: # TODO + ext-port: eth1 + dns: 8.8.8.8 +opnfv: + distro: xenial + openstack: ocata + release: d + type: # TODO + sdncontroller: + - type: nosdn + storage: + - type: ceph + disk: /dev/sdb + feature: nofeature + spaces: + - type: admin + bridge: brAdmin + cidr: # TODO + gateway: + vlan: + - type: floating + bridge: # TODO + cidr: # TODO + gateway: # TODO + vlan: diff --git a/labconfig/example/example/labconfig.yaml b/labconfig/example/example/labconfig.yaml new file mode 100644 index 00000000..80d2ac6a --- /dev/null +++ b/labconfig/example/example/labconfig.yaml @@ -0,0 +1,122 @@ +lab: + # Change the location and rack name. You deployment will be named as + # a combination of these two values + location: your_company + racks: + - rack: pod1 + # Nodes specification + nodes: + - name: rack-1-m1 + architecture: x86_64 + roles: [network,control] + # Node network interfaces. Use custom names, the interfaces will be + # renamed to what you select here, instead of trying to guess the OS name + nics: + - ifname: eth0 + spaces: [admin] + mac: ["12:34:56:78:9a:bc"] + - ifname: eth1 + spaces: [floating] + mac: ["12:34:56:78:9a:bd"] + # BMC configuration + power: + type: ipmi + address: 192.168.10.101 + user: admin + pass: admin + - name: rack-1-m2 + architecture: x86_64 + roles: [compute,control,storage] + nics: + - ifname: eth0 + spaces: [admin] + mac: ["23:45:67:89:ab:cd"] + - ifname: eth1 + spaces: [floating] + mac: ["23:45:67:89:ab:ce"] + power: + type: ipmi + address: 192.168.10.102 + user: admin + pass: admin + - name: rack-1-m3 + architecture: x86_64 + roles: [compute,control,storage] + nics: + - ifname: eth0 + spaces: [admin] + mac: ["34:56:78:9a:bc:de"] + - ifname: eth1 + spaces: [floating] + mac: ["34:56:78:9a:bc:df"] + power: + type: ipmi + address: 192.168.10.103 + user: admin + pass: admin + - name: rack-1-m4 + architecture: x86_64 + roles: [compute,storage] + nics: + - ifname: eth0 + spaces: [admin] + mac: ["45:67:89:ab:cd:ef"] + - ifname: eth1 + spaces: [floating] + mac: ["45:67:89:ab:ce:f0"] + power: + type: ipmi + address: 192.168.10.104 + user: admin + pass: admin + - name: rack-1-m5 + architecture: x86_64 + roles: [compute,storage] + nics: + - ifname: eth0 + spaces: [admin] + mac: ["56:78:9a:bc:de:f0"] + - ifname: eth1 + spaces: [floating] + mac: ["56:78:9a:bc:df:f1"] + power: + type: ipmi + address: 192.168.10.105 + user: admin + pass: admin + # Floating IP range in format: start,end,gateway,CIDR + floating-ip-range: 10.5.15.6,10.5.15.250,10.5.15.254,10.5.15.0/24 + # Port used for external connectivity + ext-port: "eth1" + # IP of a DNS server (8.8.8.8 is Google DNS) + dns: 8.8.8.8 +opnfv: + # Ubuntu version + distro: xenial + # OpenStack version + openstack: ocata + # OPNFV release + release: d + # OpenStack mode + type: noha + # SDN controller + sdncontroller: + - type: nosdn + # Storage type and configuration + storage: + - type: ceph + disk: /dev/sdb + # Special feature(s) to deploy + feature: odl_l2 + # Configured IP networks + spaces: + - type: admin + bridge: brAdmin + cidr: 10.5.1.0/24 + gateway: + vlan: + - type: floating + bridge: brExt + cidr: 10.5.15.0/24 + gateway: 10.5.15.1 + vlan: