summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/02-maasdeploy.sh32
-rwxr-xr-xci/maas/intel/pod6/deployment.yaml14
-rwxr-xr-xci/nosdn/01-deploybundle.sh13
-rwxr-xr-xci/odl/01-deploybundle.sh13
-rwxr-xr-xci/opencontrail/01-deploybundle.sh13
5 files changed, 42 insertions, 43 deletions
diff --git a/ci/02-maasdeploy.sh b/ci/02-maasdeploy.sh
index fb72ccd6..290197c5 100755
--- a/ci/02-maasdeploy.sh
+++ b/ci/02-maasdeploy.sh
@@ -60,12 +60,13 @@ sudo apt-add-repository ppa:maas-deployers/stable -y
sudo apt-add-repository ppa:juju/stable -y
sudo apt-add-repository ppa:maas/stable -y
sudo apt-get update -y
-sudo apt-get install openssh-server git maas-deployer juju juju-deployer maas-cli -y
+sudo apt-get install openssh-server git maas-deployer juju juju-deployer maas-cli python-pip -y
+sudo pip install shyaml
juju init -f
cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
-if [ $virtinstall ]; then
+if [ "$virtinstall" -eq 1 ]; then
sudo virsh net-dumpxml default > default-net-org.xml
sudo sed -i '/dhcp/d' default-net-org.xml
sudo sed -i '/range/d' default-net-org.xml
@@ -74,6 +75,15 @@ if [ $virtinstall ]; then
sudo virsh net-start default
fi
+enableautomode() {
+ listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
+
+ for nodes in $listofnodes
+ do
+ maas maas interface link-subnet $nodes $1 mode=AUTO subnet=10.4.9.0/24
+ done
+}
+
sudo maas-deployer -c deployment.yaml -d --force
sudo chown $USER:$USER environments.yaml
@@ -88,8 +98,24 @@ maas maas boot-source update 1 url="http://maas.ubuntu.com/images/ephemeral-v2/d
maas maas boot-resources import
maas maas sshkeys new key="`cat $HOME/.ssh/id_rsa.pub`"
+# Enable interfaces with maas
+case "$1" in
+ 'intelpod5' )
+ ;;
+ 'intelpod6' )
+ enableautomode eth1 || true
+ ;;
+ 'orangepod2' )
+ ;;
+ 'attvirpod1' )
+ ;;
+ 'juniperpod1' )
+ ;;
+esac
+
+
#adding compute and control nodes VM to MAAS for deployment purpose.
-if [ $virtinstall ]; then
+if [ "$virtinstall" -eq 1 ]; then
# create two more VMs to do the deployment.
sudo virt-install --connect qemu:///system --name node1-control --ram 8192 --vcpus 4 --disk size=120,format=qcow2,bus=virtio,io=native,pool=default --network bridge=virbr0,model=virtio --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node1-control
diff --git a/ci/maas/intel/pod6/deployment.yaml b/ci/maas/intel/pod6/deployment.yaml
index 523f3dd3..935ad0d8 100755
--- a/ci/maas/intel/pod6/deployment.yaml
+++ b/ci/maas/intel/pod6/deployment.yaml
@@ -22,7 +22,7 @@ demo-maas:
apt_http_proxy:
apt_sources:
- - ppa:maas/stable
+ - ppa:maas/next
- ppa:juju/stable
# Virsh power settings
@@ -145,9 +145,6 @@ demo-maas:
architecture: amd64/generic
mac_addresses:
- "00:1e:67:e0:0b:71"
- - "00:1e:67:e0:0b:72"
- - "00:1e:67:d0:9a:8c"
- - "00:1e:67:d0:9a:8d"
power:
type: ipmi
address: 10.4.7.2
@@ -181,9 +178,6 @@ demo-maas:
architecture: amd64/generic
mac_addresses:
- "00:1e:67:e0:09:32"
- - "00:1e:67:e0:09:33"
- - "00:1e:67:d0:9b:92"
- - "00:1e:67:d0:9b:93"
power:
type: ipmi
address: 10.4.7.3
@@ -199,9 +193,6 @@ demo-maas:
architecture: amd64/generic
mac_addresses:
- "00:1e:67:e0:09:fa"
- - "00:1e:67:e0:09:fb"
- - "00:1e:67:d0:9c:9c"
- - "00:1e:67:d0:9c:9d"
power:
type: ipmi
address: 10.4.7.4
@@ -217,9 +208,6 @@ demo-maas:
architecture: amd64/generic
mac_addresses:
- "00:1e:67:cf:bc:f7"
- - "00:1e:67:cf:bc:f8"
- - "00:1e:67:d0:9c:26"
- - "00:1e:67:d0:9c:27"
power:
type: ipmi
address: 10.4.7.5
diff --git a/ci/nosdn/01-deploybundle.sh b/ci/nosdn/01-deploybundle.sh
index a945050b..8dc47efa 100755
--- a/ci/nosdn/01-deploybundle.sh
+++ b/ci/nosdn/01-deploybundle.sh
@@ -33,16 +33,15 @@ case "$3" in
sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "eth1"/g' ./bundles.yaml
;;
'intelpod6' )
- cp maas/intel/pod6/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
- cp maas/intel/pod6/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
- cp maas/intel/pod6/interfaces.host trusty/ubuntu-nodes-compute/network/interfaces.host
- cp maas/intel/pod6/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
+ # As environment does not need special treatment for interfaces for MAAS 1.9
+ sed -i -- 's/local:trusty\/ubuntu-nodes-controller/cs:trusty\/ubuntu/g' ./bundles.yaml
+ sed -i -- 's/local:trusty\/ubuntu-nodes-compute/cs:trusty\/ubuntu/g' ./bundles.yaml
# As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
sed -i -- 's/10.4.1.1/10.4.1.2/g' ./bundles.yaml
# choose the correct interface to use for data network
sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.4.9.0\/24/g' ./bundles.yaml
# Choose the external port to go out from gateway to use.
- sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "brPublic"/g' ./bundles.yaml
+ sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "eth2"/g' ./bundles.yaml
;;
'intelpod5' )
cp maas/intel/pod5/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
@@ -57,10 +56,6 @@ case "$3" in
sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "brPublic"/g' ./bundles.yaml
;;
'attvirpod1' )
- cp maas/att/virpod1/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
- cp maas/att/virpod1/interfaces.host trusty/ubuntu-nodes-compute/network/interfaces.host
- cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
- cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
# As virtual environment does not need special treatment for interfaces.
sed -i -- 's/local:trusty\/ubuntu-nodes-controller/cs:trusty\/ubuntu/g' ./bundles.yaml
sed -i -- 's/local:trusty\/ubuntu-nodes-compute/cs:trusty\/ubuntu/g' ./bundles.yaml
diff --git a/ci/odl/01-deploybundle.sh b/ci/odl/01-deploybundle.sh
index cb42e00a..74c603b3 100755
--- a/ci/odl/01-deploybundle.sh
+++ b/ci/odl/01-deploybundle.sh
@@ -33,16 +33,15 @@ case "$3" in
sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "eth1"/g' ./bundles.yaml
;;
'intelpod6' )
- cp maas/intel/pod6/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
- cp maas/intel/pod6/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
- cp maas/intel/pod6/interfaces.host trusty/ubuntu-nodes-compute/network/interfaces.host
- cp maas/intel/pod6/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
+ # As environment does not need special treatment for interfaces for MAAS 1.9
+ sed -i -- 's/local:trusty\/ubuntu-nodes-controller/cs:trusty\/ubuntu/g' ./bundles.yaml
+ sed -i -- 's/local:trusty\/ubuntu-nodes-compute/cs:trusty\/ubuntu/g' ./bundles.yaml
# As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
sed -i -- 's/10.4.1.1/10.4.1.2/g' ./bundles.yaml
# choose the correct interface to use for data network
sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.4.9.0\/24/g' ./bundles.yaml
# Choose the external port to go out from gateway to use.
- sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "brPublic"/g' ./bundles.yaml
+ sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "eth2"/g' ./bundles.yaml
;;
'intelpod5' )
cp maas/intel/pod5/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
@@ -57,10 +56,6 @@ case "$3" in
sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "brPublic"/g' ./bundles.yaml
;;
'attvirpod1' )
- cp maas/att/virpod1/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
- cp maas/att/virpod1/interfaces.host trusty/ubuntu-nodes-compute/network/interfaces.host
- cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
- cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
# As virtual environment does not need special treatment for interfaces.
sed -i -- 's/local:trusty\/ubuntu-nodes-controller/cs:trusty\/ubuntu/g' ./bundles.yaml
sed -i -- 's/local:trusty\/ubuntu-nodes-compute/cs:trusty\/ubuntu/g' ./bundles.yaml
diff --git a/ci/opencontrail/01-deploybundle.sh b/ci/opencontrail/01-deploybundle.sh
index b105fa1d..639f2c1a 100755
--- a/ci/opencontrail/01-deploybundle.sh
+++ b/ci/opencontrail/01-deploybundle.sh
@@ -33,16 +33,15 @@ case "$3" in
sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "eth1"/g' ./bundles.yaml
;;
'intelpod6' )
- cp maas/intel/pod6/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
- cp maas/intel/pod6/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
- cp maas/intel/pod6/interfaces.host trusty/ubuntu-nodes-compute/network/interfaces.host
- cp maas/intel/pod6/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
+ # As environment does not need special treatment for interfaces for MAAS 1.9
+ sed -i -- 's/local:trusty\/ubuntu-nodes-controller/cs:trusty\/ubuntu/g' ./bundles.yaml
+ sed -i -- 's/local:trusty\/ubuntu-nodes-compute/cs:trusty\/ubuntu/g' ./bundles.yaml
# As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
sed -i -- 's/10.4.1.1/10.4.1.2/g' ./bundles.yaml
# choose the correct interface to use for data network
sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.4.9.0\/24/g' ./bundles.yaml
# Choose the external port to go out from gateway to use.
- sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "brPublic"/g' ./bundles.yaml
+ sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "eth2"/g' ./bundles.yaml
;;
'intelpod5' )
cp maas/intel/pod5/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
@@ -57,10 +56,6 @@ case "$3" in
sed -i -- 's/# "ext-port": "eth1"/ "ext-port": "brPublic"/g' ./bundles.yaml
;;
'attvirpod1' )
- cp maas/att/virpod1/interfaces.host trusty/ubuntu-nodes-controller/network/interfaces.host
- cp maas/att/virpod1/interfaces.host trusty/ubuntu-nodes-compute/network/interfaces.host
- cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
- cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
# As virtual environment does not need special treatment for interfaces.
sed -i -- 's/local:trusty\/ubuntu-nodes-controller/cs:trusty\/ubuntu/g' ./bundles.yaml
sed -i -- 's/local:trusty\/ubuntu-nodes-compute/cs:trusty\/ubuntu/g' ./bundles.yaml