diff options
Diffstat (limited to 'ci')
59 files changed, 2428 insertions, 0 deletions
diff --git a/ci/01-bootstrap.sh b/ci/01-bootstrap.sh new file mode 100755 index 00000000..c04ae2da --- /dev/null +++ b/ci/01-bootstrap.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -ex + +juju bootstrap --debug --to bootstrap.maas +sleep 5 +juju deploy juju-gui --to 0 + +JUJU_REPOSITORY= +juju set-constraints tags= + diff --git a/ci/01-deploybundle.sh b/ci/01-deploybundle.sh new file mode 100755 index 00000000..3a6c10f4 --- /dev/null +++ b/ci/01-deploybundle.sh @@ -0,0 +1,25 @@ +#!/bin/bash +#placeholder for deployment script. +set -ex + +case "$1" in + 'nonha' ) + cp odl/juju-deployer/ovs-odl.yaml ./bundles.yaml + ;; + 'ha' ) + cp odl/juju-deployer/ovs-odl-ha.yaml ./bundles.yaml + ;; + 'tip' ) + cp odl/juju-deployer/ovs-odl-tip.yaml ./bundles.yaml + ;; + * ) + cp odl/juju-deployer/ovs-odl.yaml ./bundles.yaml + ;; +esac + +echo "... Deployment Started ...." + +#case openstack kilo with odl +juju-deployer -d -r 13 -c bundles.yaml trusty-"$2" + +echo "... Deployment finished ...." diff --git a/ci/README b/ci/README new file mode 100644 index 00000000..47856fbd --- /dev/null +++ b/ci/README @@ -0,0 +1,45 @@ +MAAS pre requisite before deploying the solution: +================================================= + +MAAS version 1.8.0 or latest should be installed and configure +from ppa:maas/stable + +Please do the following once you have configure the MAAS cluster and regional +controller. + +1. Create two KVM virtual machine and have it named as bootstrap.maas and + node1.maas +2. Maually add chassis in MAAS with virsh as option and have both nodes listed + and commionined in MAAS. +3. Have all other physical nodes added into maas by PXE boot the nodes and + make sure node gets pxe booted theroug MAAS. +4. Tag all physical nodes as physical. +5. Tag bootstrap.maas as bootstrap and nodea.maas as neutron and gateway. + +install juju +============ + +add juju stable ppa by running command sudo apt-add-repository ppa:juju/stable +then run the following commands to do an juju install. + +sudo apt-get update +sudo apt-get install juju + +copy the environments.yaml file into ~/.juju/ directory and modify accordingly +MAAS_URL +MAAS_UUID + +deploy the bundle +================= + +run the following commands to clone a git repository and run the bundle. + +git clone https://narindergupta@gerrit.opnfv.org/gerrit/joid +# to depploy odl with kilo in nonha mode +./deploy.sh -s odl -o kilo -t nonha + +# to deploy openstail with kilo in nonha mode +./deply.sh -s opencontrail -o kilo -t nonha + +NOTE: Wait for approximately 30-45 minutes and your openstack will be ready to use. + diff --git a/ci/clean.sh b/ci/clean.sh new file mode 100755 index 00000000..7affbe71 --- /dev/null +++ b/ci/clean.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -ex + +#juju-deployer -T -d +juju destroy-environment maas -y +rm -rf ~/.juju/j* +rm -rf ~/.juju/environments +rm -rf ~/.juju/ssh +rm -rf ~/.juju/.deployer-store-cache + diff --git a/ci/deploy.sh b/ci/deploy.sh new file mode 100755 index 00000000..9721a4b0 --- /dev/null +++ b/ci/deploy.sh @@ -0,0 +1,46 @@ +#!/bin/bash + +set -ex +./01-bootstrap.sh + +#need to put mutiple cases here where decide this bundle to deploy by default use the odl bundle. +# Below parameters are the default and we can according the release + +opnfvsdn=odl +opnfvtype=nonha +openstack=kilo +opnfvlab=intelpod5 + +usage() { echo "Usage: $0 [-s <odl|opencontrail>] + [-t <nonha|ha|tip>] + [-o <juno|kilo|liberty>] + [-l <intelpod5>]" 1>&2 exit 1;} + +while getopts ":s:t:o:l:h:" opt; do + case "${opt}" in + s) + opnfvsdn=${OPTARG} + ;; + t) + opnfvtype=${OPTARG} + ;; + o) + openstack=${OPTARG} + ;; + l) + opnfvlab=${OPTARG} + ;; + h) + usage + ;; + *) + ;; + esac +done + +#copy the script which needs to get deployed as part of ofnfv release +cp ./$opnfvsdn/01-deploybundle.sh ./01-deploybundle.sh + +#case default: +./01-deploybundle.sh $opnfvtype $openstack $opnfvlab + diff --git a/ci/intel/pod5/environment.yaml b/ci/intel/pod5/environment.yaml new file mode 100644 index 00000000..10f7637b --- /dev/null +++ b/ci/intel/pod5/environment.yaml @@ -0,0 +1,36 @@ +default: maas +environments: + # https://juju.ubuntu.com/docs/config-maas.html + maas: + type: maas + + # maas-server specifies the location of the MAAS server. It must + # specify the base path. + # + maas-server: 'http://10.4.1.1/MAAS/' + + # maas-oauth holds the OAuth credentials from MAAS. + # + maas-oauth: 'c6tcQz4tyS3ALajCtF:sqcWhw8MkxTjUDLZrm:hBhszBLv5EqrY8h6yktFXWUT5825ShvE' + + # maas-server bootstrap ssh connection options + # + + # bootstrap-timeout time to wait contacting a state server, in seconds. + bootstrap-timeout: 1800 + admin-secret: admin + + # Whether or not to refresh the list of available updates for an + # OS. The default option of true is recommended for use in + # production systems, but disabling this can speed up local + # deployments for development or testing. + # + enable-os-refresh-update: false + + # Whether or not to perform OS upgrades when machines are + # provisioned. The default option of true is recommended for use + # in production systems, but disabling this can speed up local + # deployments for development or testing. + # + enable-os-upgrade: false + diff --git a/ci/intel/pod5/maas/config.sh b/ci/intel/pod5/maas/config.sh new file mode 100644 index 00000000..b5190b0f --- /dev/null +++ b/ci/intel/pod5/maas/config.sh @@ -0,0 +1,68 @@ +#!/bin/bash + +# TODO +# run the script to configure MAASS with set of data +MAASUSER=admin +MAASPASS=admin +MAASINTF="br0" +MAASGATEWAY=10.4.0.1 +MAASDHCPIPSTART=10.4.1.50 +MAASDHCPIPEND=10.4.1.254 +MAASSTATICSTART=10.4.2.20 +MAASSTATICEND=10.4.2.254 +MAASUPSTREAMDNS=10.4.0.2 +MAASPROXY="http://10.4.1.1:8000/" +# END + +export MAAS_URL="http://10.4.1.1/MAAS/" +export APIKEY="c6tcQz4tyS3ALajCtF:sqcWhw8MkxTjUDLZrm:hBhszBLv5EqrY8h6yktFXWUT5825ShvE" + +# TODO +# collect the mac address and BMC detais to add a node into MAAS. +INTELPOD5SERV1BMCIP=10.4.2.8 +INTELPOD5SERV1MAC1="00:1e:67:e0:0a:4a" +INTELPOD5SERV1MAC2="00:1e:67:e0:0a:4b" +INTELPOD5SERV1MAC3="00:1e:67:d0:9a:10" +INTELPOD5SERV1MAC4="00:1e:67:d0:9a:11" + +INTELPOD5SERV2BMCIP=10.4.2.9 +INTELPOD5SERV2MAC1="00:1e:67:e0:08:b0" +INTELPOD5SERV2MAC2="00:1e:67:e0:08:b1" +INTELPOD5SERV2MAC3="00:1e:67:d0:99:ee" +INTELPOD5SERV2MAC4="00:1e:67:d0:99:ef" + +INTELPOD5SERV3BMCIP=10.4.2.7 +INTELPOD5SERV3MAC1="00:1e:67:e0:08:7e" +INTELPOD5SERV3MAC2="00:1e:67:e0:08:7f" +INTELPOD5SERV3MAC3="00:1e:67:c2:23:d8" +INTELPOD5SERV3MAC4="00:1e:67:c2:23:d9" + +INTELPOD5SERV4BMCIP=10.4.2.10 +INTELPOD5SERV5MAC1="00:1e:67:cf:b8:92" +INTELPOD5SERV5MAC2="00:1e:67:cf:b8:93" +INTELPOD5SERV5MAC3="00:1e:67:d0:9b:0c" +INTELPOD5SERV5MAC4="00:1e:67:d0:9b:0d" + +POWERADDRESS="qemu+ssh://user@10.4.1.1/system" +POWERID1="bootstrap" +POWERID2="node1" +POWERID2="node2" +POWERPASSWORD="Intel.123" + +bootstrapMAC1="52:54:00:11:d1:85" +bootstrapMAC2="52:54:00:61:03:ae" + +node1MAC1="52:54:00:1f:dc:44" +node1MAC2="52:54:00:23:e9:f9" + +node2MAC1="52:54:00:08:20:97" +node2MAC2="52:54:00:af:55:38" + + +# BMC username and password for power management +INTELPOD5BMCUSERNAME=root +INTELPOD5BMCPASS=root + +# END +maas login admin $MAAS_URL $APIKEY +#maas admin nodes list diff --git a/ci/odl/01-deploybundle.sh b/ci/odl/01-deploybundle.sh new file mode 100755 index 00000000..3a6c10f4 --- /dev/null +++ b/ci/odl/01-deploybundle.sh @@ -0,0 +1,25 @@ +#!/bin/bash +#placeholder for deployment script. +set -ex + +case "$1" in + 'nonha' ) + cp odl/juju-deployer/ovs-odl.yaml ./bundles.yaml + ;; + 'ha' ) + cp odl/juju-deployer/ovs-odl-ha.yaml ./bundles.yaml + ;; + 'tip' ) + cp odl/juju-deployer/ovs-odl-tip.yaml ./bundles.yaml + ;; + * ) + cp odl/juju-deployer/ovs-odl.yaml ./bundles.yaml + ;; +esac + +echo "... Deployment Started ...." + +#case openstack kilo with odl +juju-deployer -d -r 13 -c bundles.yaml trusty-"$2" + +echo "... Deployment finished ...." diff --git a/ci/odl/README b/ci/odl/README new file mode 100644 index 00000000..765e5eb7 --- /dev/null +++ b/ci/odl/README @@ -0,0 +1,87 @@ +OpenDaylight Deployment with Juju +================================= + +This readme contains instructions for checking out and deploying Juju charms for +OpenDaylight. + +The charms are targetted at Trusty. + + +Checkout charms +--------------- + +Charms are hosted on Launchpad. +You need to 'sudo apt-get install bzr' first. + +Follow these steps to checkout code: + +cd <deployer dir> +./fetch-charms.sh + +This will checkout the relevant charms into 'src' and create any Juju symlinks +in 'charms'. + + +Deploy with cloud-sh-odl +------------------------ + +cloud-sh-odl is a collection of development shell scripts to deploy +and setup OpenStack with OpenDaylight using Juju's local provider. This will +create 3 KVMs as follows: + +*KVM #1 - Keystone, Glance, Neutron Server, Nova Cloud Controller, Horizon, + MySQL, RabbitMQ, OpenDaylight Controller + +*KVM #2 - Neutron agents + +*KVM #3 - Nova Compute + +You'll require approx. 13Gb RAM with 40Gb+ disk space. +Deployment can take anywhere between 20 mins to 1 hour. + +You need to 'sudo apt-get install juju juju-local uvtool', and +logout/login in order to pick up libvirt group permissions before +proceeding. See https://bugs.launchpad.net/juju-core/+bug/1308088. + +Follow these steps: + +ssh-keygen + (if you don't already have a key at ~/.ssh/id_rsa). + +cp cloud-sh-odl/environments.yaml ~/.juju + (or create your own default local environment in your existing + environments.yaml file) + +cd cloud-sh-odl + +./deploy.sh + +This will log to 'out.log'. + +This will deploy OpenStack and import Trusty's daily image into Glance. + +Horizon will be located on the machine 'juju status openstack-dashboard' - +http://<ip>/horizon. +Admin credentials will be written to cloud/admin-openrc. + +The deployment can be destroyed with: + +juju destroy-environment local + + +Deploy with Juju Deployer +------------------------- + +Juju Deployer can deploy a preset configuration of charms given a yaml +configuration file. There is a configuration file in +'juju-deployer/odl.yaml'. + +You need to 'sudo apt-get install juju-deployer' first. + +Then: + +cd juju-deployer + +juju-deployer -c odl.yaml -d trusty-icehouse-odl + +Juju Deployer will branch its own copy of the remote charms. diff --git a/ci/odl/cloud-sh-odl/cloud-setup.sh b/ci/odl/cloud-sh-odl/cloud-setup.sh new file mode 100755 index 00000000..2a0bc2a7 --- /dev/null +++ b/ci/odl/cloud-sh-odl/cloud-setup.sh @@ -0,0 +1,10 @@ +#!/bin/sh -e + +. ~/admin-openrc + +# adjust tiny image +nova flavor-delete m1.tiny +nova flavor-create m1.tiny 1 512 8 1 + +# import key pair +nova keypair-add --pub-key id_rsa.pub ubuntu-keypair diff --git a/ci/odl/cloud-sh-odl/compute.sh b/ci/odl/cloud-sh-odl/compute.sh new file mode 100755 index 00000000..eb818250 --- /dev/null +++ b/ci/odl/cloud-sh-odl/compute.sh @@ -0,0 +1,8 @@ +#!/bin/sh -e + +modprobe kvm_intel +printf "\n%s\n" kvm_intel >> /etc/modules +service libvirt-bin restart + +sed -e 's/KSM_ENABLED=1/KSM_ENABLED=0/' -i /etc/default/qemu-kvm +service qemu-kvm restart diff --git a/ci/odl/cloud-sh-odl/config.sh b/ci/odl/cloud-sh-odl/config.sh new file mode 100644 index 00000000..66932c58 --- /dev/null +++ b/ci/odl/cloud-sh-odl/config.sh @@ -0,0 +1,30 @@ +export JUJU_REPOSITORY=../charms + +DEFAULT_SERIES=trusty + +CHARM_GLANCE=local:trusty/glance + +CHARM_KEYSTONE=local:trusty/keystone +CHARM_KEYSTONE_DEPLOY_OPTS="--config config.yaml" + +CHARM_MYSQL=trusty/mysql +CHARM_MYSQL_DEPLOY_OPTS="--config config.yaml" + +CHARM_NEUTRON_API=local:trusty/neutron-api +CHARM_NEUTRON_API_DEPLOY_OPTS="--config config.yaml" + +CHARM_NEUTRON_GATEWAY=local:trusty/quantum-gateway +CHARM_NEUTRON_GATEWAY_DEPLOY_OPTS="--config config.yaml" + +CHARM_NEUTRON_ODL=local:trusty/neutron-odl + +CHARM_NOVA_CLOUD_CONTROLLER=local:trusty/nova-cloud-controller +CHARM_NOVA_CLOUD_CONTROLLER_DEPLOY_OPTS="--config config.yaml" + +CHARM_NOVA_COMPUTE=local:trusty/nova-compute + +CHARM_ODL_CONTROLLER=local:trusty/odl-controller + +CHARM_OPENSTACK_DASHBOARD=local:trusty/openstack-dashboard + +CHARM_RABBITMQ_SERVER=trusty/rabbitmq-server diff --git a/ci/odl/cloud-sh-odl/config.yaml b/ci/odl/cloud-sh-odl/config.yaml new file mode 100644 index 00000000..066171be --- /dev/null +++ b/ci/odl/cloud-sh-odl/config.yaml @@ -0,0 +1,18 @@ +keystone: + admin-password: password + +mysql: + dataset-size: 10% + max-connections: 1000 + +neutron-api: + neutron-plugin: odl + neutron-security-groups: True + +neutron-gateway: + instance-mtu: 1400 + plugin: odl + +nova-cloud-controller: + network-manager: Neutron + quantum-security-groups: "yes" diff --git a/ci/odl/cloud-sh-odl/deploy.sh b/ci/odl/cloud-sh-odl/deploy.sh new file mode 100755 index 00000000..b0a63b6b --- /dev/null +++ b/ci/odl/cloud-sh-odl/deploy.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +exec ./openstack.sh ./config.sh 2>&1 | tee out.log diff --git a/ci/odl/cloud-sh-odl/environments.yaml b/ci/odl/cloud-sh-odl/environments.yaml new file mode 100644 index 00000000..72a492d3 --- /dev/null +++ b/ci/odl/cloud-sh-odl/environments.yaml @@ -0,0 +1,8 @@ +default: local + +environments: + local: + type: local + container: kvm + default-series: trusty + lxc-clone: true diff --git a/ci/odl/cloud-sh-odl/glance.sh b/ci/odl/cloud-sh-odl/glance.sh new file mode 100755 index 00000000..467932ff --- /dev/null +++ b/ci/odl/cloud-sh-odl/glance.sh @@ -0,0 +1,8 @@ +#!/bin/sh -e + +. ~/admin-openrc + +wget http://cloud-images.ubuntu.com/trusty/current/MD5SUMS + +wget http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img +glance image-create --name ubuntu-trusty-daily --disk-format qcow2 --container-format bare --owner admin --file trusty-server-cloudimg-amd64-disk1.img --checksum $(grep trusty-server-cloudimg-amd64-disk1.img MD5SUMS | cut -d " " -f 1) --is-public True diff --git a/ci/odl/cloud-sh-odl/lxc-network.sh b/ci/odl/cloud-sh-odl/lxc-network.sh new file mode 100755 index 00000000..5a65fa18 --- /dev/null +++ b/ci/odl/cloud-sh-odl/lxc-network.sh @@ -0,0 +1,18 @@ +#!/bin/sh -e + +DEBIAN_FRONTEND=noninteractive apt-get -qy -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold install lxc < /dev/null + +sed -e 's/^USE_LXC_BRIDGE="true"/USE_LXC_BRIDGE="false"/' -i /etc/default/lxc +service lxc-net restart + +ifdown eth0 +mv /etc/network/interfaces.d/eth0.cfg /etc/network/interfaces.d/eth0.cfg.bak +cat <<-"EOF" > /etc/network/interfaces.d/bridge.cfg + auto eth0 + iface eth0 inet manual + + auto lxcbr0 + iface lxcbr0 inet dhcp + bridge_ports eth0 + EOF +ifup eth0 lxcbr0 diff --git a/ci/odl/cloud-sh-odl/openstack.sh b/ci/odl/cloud-sh-odl/openstack.sh new file mode 100755 index 00000000..9da2cfb5 --- /dev/null +++ b/ci/odl/cloud-sh-odl/openstack.sh @@ -0,0 +1,146 @@ +#!/bin/sh -ex + +agentState() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"machines\"][\"$1\"][\"agent-state\"]" 2> /dev/null +} + +agentStateUnit() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"agent-state\"]" 2> /dev/null +} + +configOpenrc() +{ + cat <<-EOF + export OS_USERNAME=$1 + export OS_PASSWORD=$2 + export OS_TENANT_NAME=$3 + export OS_AUTH_URL=$4 + export OS_REGION_NAME=$5 + EOF +} + +unitAddress() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null +} + +unitMachine() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null +} + +waitForMachine() +{ + for machine; do + while [ "$(agentState $machine)" != started ]; do + sleep 5 + done + done +} + +waitForService() +{ + for service; do + while [ "$(agentStateUnit "$service" 0)" != started ]; do + sleep 5 + done + done +} + +if [ $# -ne 0 ]; then + . "$1" +fi + +juju bootstrap +waitForMachine 0 + +spare_cpus=$(($(grep processor /proc/cpuinfo | wc -l) - 5)) +if [ $spare_cpus -gt 0 ]; then + spare_cpus=$(((spare_cpus * 3) / 4)) +else + spare_cpus=0 +fi + +extra_cpus=0 +[ $spare_cpus -ne 0 ] && extra_cpus=$((1 + (((spare_cpus - 1) * 3) / 4))) && spare_cpus=$((spare_cpus - extra_cpus)) +juju add-machine --constraints "cpu-cores=$((1 + extra_cpus)) mem=8G root-disk=20G" --series $DEFAULT_SERIES + +juju deploy --constraints mem=1G $CHARM_NEUTRON_GATEWAY_DEPLOY_OPTS "${CHARM_NEUTRON_GATEWAY:-quantum-gateway}" neutron-gateway + +juju deploy --constraints "cpu-cores=$((1 + spare_cpus)) mem=4G root-disk=20G" $CHARM_NOVA_COMPUTE_DEPLOY_OPTS "${CHARM_NOVA_COMPUTE:-nova-compute}" + +waitForMachine 1 +juju scp lxc-network.sh 1: +juju run --machine 1 "sudo ./lxc-network.sh" +juju deploy --to lxc:1 $CHARM_MYSQL_DEPLOY_OPTS "${CHARM_MYSQL:-mysql}" +juju deploy --to lxc:1 $CHARM_RABBITMQ_SERVER_DEPLOY_OPTS "${CHARM_RABBITMQ_SERVER:-rabbitmq-server}" +juju deploy --to lxc:1 $CHARM_KEYSTONE_DEPLOY_OPTS "${CHARM_KEYSTONE:-keystone}" +juju deploy --to lxc:1 $CHARM_NOVA_CLOUD_CONTROLLER_DEPLOY_OPTS "${CHARM_NOVA_CLOUD_CONTROLLER:-nova-cloud-controller}" +juju deploy --to lxc:1 $CHARM_NEUTRON_API_DEPLOY_OPTS "${CHARM_NEUTRON_API:-neutron-api}" +juju deploy --to lxc:1 $CHARM_GLANCE_DEPLOY_OPTS "${CHARM_GLANCE:-glance}" +juju deploy --to lxc:1 $CHARM_OPENSTACK_DASHBOARD_DEPLOY_OPTS "${CHARM_OPENSTACK_DASHBOARD:-openstack-dashboard}" +# opendaylight +juju deploy --to lxc:1 $CHARM_ODL_CONTROLLER_DEPLOY_OPTS "${CHARM_ODL_CONTROLLER:-odl-controller}" +juju deploy $CHARM_NEUTRON_ODL_DEPLOY_OPTS "${CHARM_NEUTRON_ODL:-neutron-odl}" + +# relation must be set first +# no official way of knowing when this relation hook will fire +waitForService mysql keystone +juju add-relation keystone mysql +sleep 60 + +waitForService rabbitmq-server nova-cloud-controller glance +juju add-relation nova-cloud-controller mysql +juju add-relation nova-cloud-controller rabbitmq-server +juju add-relation nova-cloud-controller glance +juju add-relation nova-cloud-controller keystone +sleep 60 + +waitForService neutron-api +juju add-relation neutron-api mysql +juju add-relation neutron-api rabbitmq-server +juju add-relation neutron-api keystone +juju add-relation neutron-api nova-cloud-controller +sleep 60 + +waitForService openstack-dashboard neutron-gateway nova-compute +juju add-relation neutron-gateway mysql +juju add-relation neutron-gateway:amqp rabbitmq-server:amqp +juju add-relation neutron-gateway nova-cloud-controller +juju add-relation neutron-gateway neutron-api +juju add-relation nova-compute:shared-db mysql:shared-db +juju add-relation nova-compute:amqp rabbitmq-server:amqp +juju add-relation nova-compute glance +juju add-relation nova-compute nova-cloud-controller +juju add-relation glance mysql +juju add-relation glance keystone +juju add-relation openstack-dashboard keystone +sleep 60 + +# opendaylight +waitForService odl-controller +juju add-relation neutron-api odl-controller +juju add-relation neutron-gateway odl-controller +juju add-relation nova-compute neutron-odl +juju add-relation neutron-odl odl-controller +sleep 60 + +# enable kvm on compute +machine=$(unitMachine nova-compute 0) +juju scp compute.sh $machine: +juju run --machine $machine "sudo ./compute.sh" + +mkdir -m 0700 -p cloud +controller_address=$(unitAddress keystone 0) +configOpenrc admin password Admin http://$controller_address:5000/v2.0 RegionOne > cloud/admin-openrc +chmod 0600 cloud/admin-openrc + +machine=$(unitMachine nova-cloud-controller 0) +juju scp cloud-setup.sh cloud/admin-openrc ~/.ssh/id_rsa.pub $machine: +juju run --machine $machine ./cloud-setup.sh + +machine=$(unitMachine glance 0) +juju scp glance.sh cloud/admin-openrc $machine: +juju run --machine $machine ./glance.sh diff --git a/ci/odl/fetch-charms.sh b/ci/odl/fetch-charms.sh new file mode 100755 index 00000000..3cf269c2 --- /dev/null +++ b/ci/odl/fetch-charms.sh @@ -0,0 +1,19 @@ +#!/bin/sh -ex + +mkdir -p src/charms/trusty + +# openstack +bzr branch lp:~openstack-charmers/charms/trusty/glance/next src/charms/trusty/glance-next +bzr branch lp:~openstack-charmers/charms/trusty/keystone/next src/charms/trusty/keystone-next +bzr branch lp:~sdn-charmers/charms/trusty/neutron-api/odl src/charms/trusty/neutron-api-odl +bzr branch lp:~openstack-charmers/charms/trusty/nova-cloud-controller/next src/charms/trusty/nova-cloud-controller-next +bzr branch lp:~sdn-charmers/charms/trusty/nova-compute/odl src/charms/trusty/nova-compute-odl +bzr branch lp:~openstack-charmers/charms/trusty/openstack-dashboard/next src/charms/trusty/openstack-dashboard-next +bzr branch lp:~sdn-charmers/charms/trusty/quantum-gateway/odl src/charms/trusty/quantum-gateway-odl + +# opendaylight +bzr branch lp:~sdn-charmers/charms/trusty/odl-controller/trunk src/charms/trusty/odl-controller +bzr branch lp:~sdn-charmers/charms/trusty/neutron-odl/trunk src/charms/trusty/neutron-odl + +mkdir -p charms/trusty +(cd charms/trusty; ln -s ../../src/charms/trusty/* .) diff --git a/ci/odl/juju-deployer/odl.yaml b/ci/odl/juju-deployer/odl.yaml new file mode 100644 index 00000000..f5e6bd73 --- /dev/null +++ b/ci/odl/juju-deployer/odl.yaml @@ -0,0 +1,80 @@ +openstack: + services: + mysql: + constraints: mem=1G + options: + dataset-size: 50% + max-connections: 1000 + rabbitmq-server: + constraints: mem=1G + keystone: + branch: lp:~openstack-charmers/charms/trusty/keystone/next + constraints: mem=1G + openstack-dashboard: + branch: lp:~openstack-charmers/charms/trusty/openstack-dashboard/next + constraints: mem=1G + nova-compute: + branch: lp:~sdn-charmers/charms/trusty/nova-compute/odl + constraints: mem=4G root-disk=20G + nova-cloud-controller: + branch: lp:~openstack-charmers/charms/trusty/nova-cloud-controller/next + constraints: mem=1G + options: + network-manager: Neutron + neutron-api: + branch: lp:~sdn-charmers/charms/trusty/neutron-api/odl + constraints: mem=1G + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/quantum-gateway/odl + constraints: mem=1G + glance: + branch: lp:~openstack-charmers/charms/trusty/glance/next + constraints: mem=1G + relations: + - [ keystone, mysql ] + - [ nova-cloud-controller, mysql ] + - [ nova-cloud-controller, rabbitmq-server ] + - [ nova-cloud-controller, glance ] + - [ nova-cloud-controller, keystone ] + - [ neutron-api, mysql ] + - [ neutron-api, rabbitmq-server ] + - [ neutron-api, keystone ] + - [ neutron-api, nova-cloud-controller ] + - [ neutron-gateway, mysql ] + - [ "neutron-gateway:amqp", "rabbitmq-server:amqp" ] + - [ neutron-gateway, nova-cloud-controller ] + - [ neutron-gateway, neutron-api ] + - [ "nova-compute:shared-db", "mysql:shared-db" ] + - [ "nova-compute:amqp", "rabbitmq-server:amqp" ] + - [ nova-compute, glance ] + - [ nova-compute, nova-cloud-controller ] + - [ glance, mysql ] + - [ glance, keystone ] + - [ openstack-dashboard, keystone ] +odl: + inherits: openstack + services: + odl-controller: + branch: lp:~sdn-charmers/charms/trusty/odl-controller/trunk + constraints: mem=4G + neutron-odl: + branch: lp:~sdn-charmers/charms/trusty/neutron-odl/trunk + relations: + - [ neutron-api, odl-controller ] + - [ neutron-gateway, odl-controller ] + - [ nova-compute, neutron-odl ] + - [ neutron-odl, odl-controller ] +trusty-icehouse-odl: + inherits: odl + series: trusty + services: + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + overrides: + instance-mtu: 1400 + neutron-plugin: odl + neutron-security-groups: True + plugin: odl + quantum-security-groups: "yes" diff --git a/ci/odl/juju-deployer/ovs-odl-ha.yaml b/ci/odl/juju-deployer/ovs-odl-ha.yaml new file mode 100644 index 00000000..6373f2d0 --- /dev/null +++ b/ci/odl/juju-deployer/ovs-odl-ha.yaml @@ -0,0 +1,101 @@ +openstack-services: + series: trusty + services: + ubuntu: + branch: "lp:charms/trusty/ubuntu" + num_utils: 1 + constraints: tags=physical + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/neutron-gateway/ovs-odl + constraints: tags=neutron + options: + plugin: ovs-odl + instance-mtu: 1400 + nova-compute: + branch: lp:~openstack-charmers/charms/trusty/nova-compute/next + num_units: 2 + constraints: tags=physical + options: + enable-live-migration: False + manage-neutron-plugin-legacy-mode: False + neutron-api: + branch: lp:~openstack-charmers/charms/trusty/neutron-api/next + options: + neutron-security-groups: False + manage-neutron-plugin-legacy-mode: False + to: lxc:ubuntu=0 + neutron-api-odl: + branch: lp:~openstack-charmers/charms/trusty/neutron-api-odl/vpp + options: + overlay-network-type: 'vxlan gre' + security-groups: true + odl-controller: + branch: lp:~sdn-charmers/charms/trusty/odl-controller/trunk + options: + install-url: "http://10.4.1.1/odl/distribution-karaf-0.2.4-Helium-SR4.tar.gz" + to: lxc:ubuntu=0 + openvswitch-odl: + branch: lp:~alai/charms/trusty/openvswitch-odl/trunk + mysql: + charm: cs:trusty/mysql + options: + dataset-size: 50% + max-connections: 20000 + to: lxc:ubuntu=0 + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + to: lxc:ubuntu=0 + keystone: + charm: cs:trusty/keystone + options: + admin-password: openstack + admin-token: admin + to: lxc:ubuntu=0 + openstack-dashboard: + charm: cs:trusty/openstack-dashboard + to: lxc:ubuntu=0 + nova-cloud-controller: + charm: cs:trusty/nova-cloud-controller + options: + network-manager: Neutron + quantum-security-groups: "yes" + to: lxc:ubuntu=0 + glance: + charm: cs:trusty/glance + to: lxc:ubuntu=0 + relations: + - ['neutron-api:neutron-plugin-api-subordinate', 'neutron-api-odl:neutron-plugin-api-subordinate'] + - ['nova-compute:neutron-plugin', 'openvswitch-odl:neutron-plugin'] + - ['neutron-gateway', 'openvswitch-odl'] + - ['openvswitch-odl:ovsdb-manager', 'odl-controller:ovsdb-manager'] + - ['neutron-api-odl:odl-controller', 'odl-controller:controller-api'] + - ['keystone:shared-db', 'mysql:shared-db'] + - ['nova-cloud-controller:shared-db', 'mysql:shared-db'] + - ['nova-cloud-controller:amqp', 'rabbitmq-server:amqp'] + - ['nova-cloud-controller:image-service', 'glance:image-service'] + - ['nova-cloud-controller:identity-service', 'keystone:identity-service'] + - ['nova-compute:cloud-compute', 'nova-cloud-controller:cloud-compute'] + - ['nova-compute:amqp', 'rabbitmq-server:amqp'] + - ['nova-compute:image-service', 'glance:image-service'] + - ['glance:shared-db', 'mysql:shared-db'] + - ['glance:identity-service', 'keystone:identity-service'] + - ['glance:amqp', 'rabbitmq-server:amqp'] + - ['neutron-api:shared-db', 'mysql:shared-db'] + - ['neutron-api:amqp', 'rabbitmq-server:amqp'] + - ['neutron-api:neutron-api', 'nova-cloud-controller:neutron-api'] + - ['neutron-api:identity-service', 'keystone:identity-service'] + - ['neutron-gateway:amqp', 'rabbitmq-server:amqp'] + - ['neutron-gateway:neutron-plugin-api', 'neutron-api:neutron-plugin-api'] + - ['neutron-gateway:quantum-network-service', 'nova-cloud-controller:quantum-network-service'] + - ['openstack-dashboard:identity-service','keystone:identity-service'] +trusty-kilo: + inherits: openstack-services + overrides: + openstack-origin: cloud:trusty-kilo +trusty-juno: + inherits: openstack-services + overrides: + openstack-origin: cloud:trusty-juno +trusty-icehouse: + inherits: openstack-services + diff --git a/ci/odl/juju-deployer/ovs-odl-tip.yaml b/ci/odl/juju-deployer/ovs-odl-tip.yaml new file mode 100644 index 00000000..3c490d71 --- /dev/null +++ b/ci/odl/juju-deployer/ovs-odl-tip.yaml @@ -0,0 +1,126 @@ +openstack-services: + services: + ubuntu: + branch: "lp:charms/trusty/ubuntu" + num_utils: 1 + constraints: tags=physical + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/neutron-gateway/ovs-odl + constraints: tags=neutron + options: + plugin: ovs-odl + instance-mtu: 1400 + nova-compute: + branch: lp:~openstack-charmers/charms/trusty/nova-compute/next + num_units: 2 + constraints: tags=physical + options: + enable-live-migration: False + manage-neutron-plugin-legacy-mode: False + neutron-api: + branch: lp:~openstack-charmers/charms/trusty/neutron-api/next + options: + neutron-security-groups: False + manage-neutron-plugin-legacy-mode: False + to: lxc:ubuntu=0 + neutron-api-odl: + branch: lp:~openstack-charmers/charms/trusty/neutron-api-odl/vpp + options: + overlay-network-type: 'vxlan gre' + security-groups: true + odl-controller: + branch: lp:~sdn-charmers/charms/trusty/odl-controller/trunk + options: + install-url: "http://10.4.1.1/odl/distribution-karaf-0.2.4-Helium-SR4.tar.gz" + to: lxc:ubuntu=0 + openvswitch-odl: + branch: lp:~alai/charms/trusty/openvswitch-odl/trunk + mysql: + charm: cs:trusty/mysql + options: + dataset-size: 50% + max-connections: 20000 + to: lxc:ubuntu=0 + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + to: lxc:ubuntu=0 + keystone: + charm: cs:trusty/keystone + options: + admin-password: openstack + admin-token: admin + to: lxc:ubuntu=0 + openstack-dashboard: + charm: cs:trusty/openstack-dashboard + to: lxc:ubuntu=0 + nova-cloud-controller: + charm: cs:trusty/nova-cloud-controller + options: + network-manager: Neutron + quantum-security-groups: "yes" + to: lxc:ubuntu=0 + glance: + charm: cs:trusty/glance + to: lxc:ubuntu=0 + relations: + - ['neutron-api:neutron-plugin-api-subordinate', 'neutron-api-odl:neutron-plugin-api-subordinate'] + - ['nova-compute:neutron-plugin', 'openvswitch-odl:neutron-plugin'] + - ['neutron-gateway', 'openvswitch-odl'] + - ['openvswitch-odl:ovsdb-manager', 'odl-controller:ovsdb-manager'] + - ['neutron-api-odl:odl-controller', 'odl-controller:controller-api'] + - ['keystone:shared-db', 'mysql:shared-db'] + - ['nova-cloud-controller:shared-db', 'mysql:shared-db'] + - ['nova-cloud-controller:amqp', 'rabbitmq-server:amqp'] + - ['nova-cloud-controller:image-service', 'glance:image-service'] + - ['nova-cloud-controller:identity-service', 'keystone:identity-service'] + - ['nova-compute:cloud-compute', 'nova-cloud-controller:cloud-compute'] + - ['nova-compute:amqp', 'rabbitmq-server:amqp'] + - ['nova-compute:image-service', 'glance:image-service'] + - ['glance:shared-db', 'mysql:shared-db'] + - ['glance:identity-service', 'keystone:identity-service'] + - ['glance:amqp', 'rabbitmq-server:amqp'] + - ['neutron-api:shared-db', 'mysql:shared-db'] + - ['neutron-api:amqp', 'rabbitmq-server:amqp'] + - ['neutron-api:neutron-api', 'nova-cloud-controller:neutron-api'] + - ['neutron-api:identity-service', 'keystone:identity-service'] + - ['neutron-gateway:amqp', 'rabbitmq-server:amqp'] + - ['neutron-gateway:neutron-plugin-api', 'neutron-api:neutron-plugin-api'] + - ['neutron-gateway:quantum-network-service', 'nova-cloud-controller:quantum-network-service'] + - ['openstack-dashboard:identity-service','keystone:identity-service'] +# master +trusty-master: + inherits: openstack-services + services: + keystone: + options: + openstack-origin-git: include-file://keystone-master.yaml + glance: + options: + openstack-origin-git: include-file://glance-master.yaml +# cinder: +# options: +# openstack-origin-git: include-file://cinder-master.yaml +# neutron-api: +# options: +# openstack-origin-git: include-file://neutron-master.yaml + neutron-gateway: + options: + openstack-origin-git: include-file://neutron-master.yaml +# neutron-openvswitch: +# options: +# openstack-origin-git: include-file://neutron-master.yaml + openstack-dashboard: + options: + openstack-origin-git: include-file://horizon-master.yaml + nova-compute: + options: + openstack-origin-git: include-file://nova-master.yaml + nova-cloud-controller: + options: + openstack-origin-git: include-file://nova-master.yaml +trusty-kilo: + inherits: trusty-master + series: trusty + overrides: + openstack-origin: cloud:trusty-kilo + source: cloud:trusty-kilo diff --git a/ci/odl/juju-deployer/ovs-odl.yaml b/ci/odl/juju-deployer/ovs-odl.yaml new file mode 100644 index 00000000..6373f2d0 --- /dev/null +++ b/ci/odl/juju-deployer/ovs-odl.yaml @@ -0,0 +1,101 @@ +openstack-services: + series: trusty + services: + ubuntu: + branch: "lp:charms/trusty/ubuntu" + num_utils: 1 + constraints: tags=physical + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/neutron-gateway/ovs-odl + constraints: tags=neutron + options: + plugin: ovs-odl + instance-mtu: 1400 + nova-compute: + branch: lp:~openstack-charmers/charms/trusty/nova-compute/next + num_units: 2 + constraints: tags=physical + options: + enable-live-migration: False + manage-neutron-plugin-legacy-mode: False + neutron-api: + branch: lp:~openstack-charmers/charms/trusty/neutron-api/next + options: + neutron-security-groups: False + manage-neutron-plugin-legacy-mode: False + to: lxc:ubuntu=0 + neutron-api-odl: + branch: lp:~openstack-charmers/charms/trusty/neutron-api-odl/vpp + options: + overlay-network-type: 'vxlan gre' + security-groups: true + odl-controller: + branch: lp:~sdn-charmers/charms/trusty/odl-controller/trunk + options: + install-url: "http://10.4.1.1/odl/distribution-karaf-0.2.4-Helium-SR4.tar.gz" + to: lxc:ubuntu=0 + openvswitch-odl: + branch: lp:~alai/charms/trusty/openvswitch-odl/trunk + mysql: + charm: cs:trusty/mysql + options: + dataset-size: 50% + max-connections: 20000 + to: lxc:ubuntu=0 + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + to: lxc:ubuntu=0 + keystone: + charm: cs:trusty/keystone + options: + admin-password: openstack + admin-token: admin + to: lxc:ubuntu=0 + openstack-dashboard: + charm: cs:trusty/openstack-dashboard + to: lxc:ubuntu=0 + nova-cloud-controller: + charm: cs:trusty/nova-cloud-controller + options: + network-manager: Neutron + quantum-security-groups: "yes" + to: lxc:ubuntu=0 + glance: + charm: cs:trusty/glance + to: lxc:ubuntu=0 + relations: + - ['neutron-api:neutron-plugin-api-subordinate', 'neutron-api-odl:neutron-plugin-api-subordinate'] + - ['nova-compute:neutron-plugin', 'openvswitch-odl:neutron-plugin'] + - ['neutron-gateway', 'openvswitch-odl'] + - ['openvswitch-odl:ovsdb-manager', 'odl-controller:ovsdb-manager'] + - ['neutron-api-odl:odl-controller', 'odl-controller:controller-api'] + - ['keystone:shared-db', 'mysql:shared-db'] + - ['nova-cloud-controller:shared-db', 'mysql:shared-db'] + - ['nova-cloud-controller:amqp', 'rabbitmq-server:amqp'] + - ['nova-cloud-controller:image-service', 'glance:image-service'] + - ['nova-cloud-controller:identity-service', 'keystone:identity-service'] + - ['nova-compute:cloud-compute', 'nova-cloud-controller:cloud-compute'] + - ['nova-compute:amqp', 'rabbitmq-server:amqp'] + - ['nova-compute:image-service', 'glance:image-service'] + - ['glance:shared-db', 'mysql:shared-db'] + - ['glance:identity-service', 'keystone:identity-service'] + - ['glance:amqp', 'rabbitmq-server:amqp'] + - ['neutron-api:shared-db', 'mysql:shared-db'] + - ['neutron-api:amqp', 'rabbitmq-server:amqp'] + - ['neutron-api:neutron-api', 'nova-cloud-controller:neutron-api'] + - ['neutron-api:identity-service', 'keystone:identity-service'] + - ['neutron-gateway:amqp', 'rabbitmq-server:amqp'] + - ['neutron-gateway:neutron-plugin-api', 'neutron-api:neutron-plugin-api'] + - ['neutron-gateway:quantum-network-service', 'nova-cloud-controller:quantum-network-service'] + - ['openstack-dashboard:identity-service','keystone:identity-service'] +trusty-kilo: + inherits: openstack-services + overrides: + openstack-origin: cloud:trusty-kilo +trusty-juno: + inherits: openstack-services + overrides: + openstack-origin: cloud:trusty-juno +trusty-icehouse: + inherits: openstack-services + diff --git a/ci/odl/juju-deployer/source/cinder-master.yaml b/ci/odl/juju-deployer/source/cinder-master.yaml new file mode 100644 index 00000000..b000d709 --- /dev/null +++ b/ci/odl/juju-deployer/source/cinder-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: cinder, + repository: 'git://github.com/openstack/cinder', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/odl/juju-deployer/source/glance-master.yaml b/ci/odl/juju-deployer/source/glance-master.yaml new file mode 100644 index 00000000..94a0622b --- /dev/null +++ b/ci/odl/juju-deployer/source/glance-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: glance, + repository: 'git://github.com/openstack/glance', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/odl/juju-deployer/source/horizon-master.yaml b/ci/odl/juju-deployer/source/horizon-master.yaml new file mode 100644 index 00000000..0fd7e501 --- /dev/null +++ b/ci/odl/juju-deployer/source/horizon-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: horizon, + repository: 'git://github.com/openstack/horizon', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/odl/juju-deployer/source/keystone-master.yaml b/ci/odl/juju-deployer/source/keystone-master.yaml new file mode 100644 index 00000000..fb8575de --- /dev/null +++ b/ci/odl/juju-deployer/source/keystone-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: keystone, + repository: 'git://github.com/openstack/keystone', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/odl/juju-deployer/source/neutron-master.yaml b/ci/odl/juju-deployer/source/neutron-master.yaml new file mode 100644 index 00000000..ee4c8932 --- /dev/null +++ b/ci/odl/juju-deployer/source/neutron-master.yaml @@ -0,0 +1,19 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: neutron-fwaas, + repository: 'git://github.com/openstack/neutron-fwaas', + branch: master} + - {name: neutron-lbaas, + repository: 'git://github.com/openstack/neutron-lbaas', + branch: master} + - {name: neutron-vpnaas, + repository: 'git://github.com/openstack/neutron-vpnaas', + branch: master} + - {name: neutron, + repository: 'git://github.com/openstack/neutron', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/odl/juju-deployer/source/nova-master.yaml b/ci/odl/juju-deployer/source/nova-master.yaml new file mode 100644 index 00000000..0bbee4c3 --- /dev/null +++ b/ci/odl/juju-deployer/source/nova-master.yaml @@ -0,0 +1,13 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: neutron, + repository: 'git://github.com/openstack/neutron', + branch: master} + - {name: nova, + repository: 'git://github.com/openstack/nova', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/opencontrail/01-deploybundle.sh b/ci/opencontrail/01-deploybundle.sh new file mode 100755 index 00000000..9e9dfee3 --- /dev/null +++ b/ci/opencontrail/01-deploybundle.sh @@ -0,0 +1,26 @@ +#!/bin/bash +#!/bin/bash +#placeholder for deployment script. +set -ex + +case "$1" in + 'nonha' ) + cp opencontrail/juju-deployer/contrail.yaml ./bundles.yaml + ;; + 'ha' ) + cp opencontrail/juju-deployer/contrail-ha.yaml ./bundles.yaml + ;; + 'tip' ) + cp opencontrail/juju-deployer/contrail-tip.yaml ./bundles.yaml + ;; + * ) + cp opencontrail/juju-deployer/contrail.yaml ./bundles.yaml + ;; +esac + +echo "... Deployment Started ...." + +juju-deployer -d -r 13 -c bundles.yaml trusty-"$2"-contrail + +echo "... Deployment finished ...." + diff --git a/ci/opencontrail/README b/ci/opencontrail/README new file mode 100644 index 00000000..bf127542 --- /dev/null +++ b/ci/opencontrail/README @@ -0,0 +1,113 @@ +OpenContrail Deployment with Juju +================================= + +This readme contains instructions for checking out and deploying Juju charms for +OpenContrail. + +The charms are targetted at Trusty but originally used OpenContrail Precise +packages. + + +Checkout charms +--------------- + +Charms are hosted on Launchpad. +You need to 'sudo apt-get install bzr' first. + +Follow these steps to checkout code: + +cd <deployer dir> +./fetch-charms.sh + +This will checkout the relevant charms into 'src' and create any Juju symlinks +in 'charms'. + + +Deploy with cloud-sh-contrail +----------------------------- + +cloud-sh-contrail is a collection of development shell scripts to deploy +and setup OpenStack with OpenContrail using Juju's local provider. This will +create 4 KVMs as follows: + +*KVM #1 - Keystone, Glance, Neutron Server, Nova Cloud Controller, Horizon, + MySQL, RabbitMQ, Contrail Configuration, Contrail Control, + Contrail Analytics, Zookeeper + +*KVM #2 - Neutron agents + +*KVM #3 - Nova Compute with Contrail vRouter + +*KVM #4 - Cassandra + +You'll require approx. 25Gb RAM with 60Gb+ disk space. +Deployment can take anywhere between 20 mins to 1 hour. + +You need to 'sudo apt-get install juju juju-local uvtool', and +logout/login in order to pick up libvirt group permissions before +proceeding. See https://bugs.launchpad.net/juju-core/+bug/1308088. + +Follow these steps: + +ssh-keygen + (if you don't already have a key at ~/.ssh/id_rsa). + +cp cloud-sh-contrail/environments.yaml ~/.juju + (or create your own default local environment in your existing + environments.yaml file) + +cd cloud-sh-contrail + +./deploy-trusty.sh (deploys under trusty) +or +./deploy-precise.sh (deploys under precise) + +This will log to 'out.log'. + +This will deploy OpenStack and import Trusty's daily image into Glance. + +Horizon will be located on the machine 'juju status openstack-dashboard' - +http://<ip>/horizon. +Admin credentials will be written to cloud/admin-openrc. + +Upon deployment, the host's route and iptables config will be updated to send +NAT'ed traffic to the Nova Compute node hosting Contrail's virtual gateway. +Such changes can be disabled by not defining or commenting out the variable +'CONFIGURE_HOST_ROUTING' in cloud-sh-contrail/config-*.sh. + +The deployment can be destroyed with: + +juju destroy-environment local + + +Deploy with Juju Deployer +------------------------- + +Juju Deployer can deploy a preset configuration of charms given a yaml +configuration file. There is a configuration file in +'juju-deployer/contrail.yaml'. + +You need to 'sudo apt-get install juju-deployer' first. + +Then: + +cd juju-deployer + +juju-deployer -c contrail.yaml -d trusty-icehouse-contrail (deploy trusty) +or +juju-deployer -c contrail.yaml -d precise-icehouse-contrail (deploy precise) + +Juju Deployer will branch its own copy of the remote charms. + +Post-deployment scripts exist to configure OpenStack. +You will need 'dnsutils' package installed beforehand. +To run: + +cd scripts + +CONFIGURE_HOST_ROUTING=true ./openstack.sh + +Setting 'CONFIGURE_HOST_ROUTING' environment variable will configure the host's +route and iptables config to send NAT'ed traffic to the Nova Compute node +hosting Contrail's virtual gateway. If you do not want this, run +'./openstack.sh' directly. diff --git a/ci/opencontrail/cloud-sh-contrail/cloud-setup.sh b/ci/opencontrail/cloud-sh-contrail/cloud-setup.sh new file mode 100755 index 00000000..47e625c9 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/cloud-setup.sh @@ -0,0 +1,29 @@ +#!/bin/sh -e + +. ~/admin-openrc + +# adjust tiny image +nova flavor-delete m1.tiny +nova flavor-create m1.tiny 1 512 8 1 + +# configure external network +neutron net-create --router:external=True public-net +neutron subnet-create --name public-subnet --no-gateway --allocation-pool start=10.0.10.2,end=10.0.10.254 --disable-dhcp public-net 10.0.10.0/24 + +# create vm network +neutron net-create ubuntu-net +neutron subnet-create --name ubuntu-subnet --gateway 10.0.5.1 ubuntu-net 10.0.5.0/24 + +# create pool of floating ips +i=0 +while [ $i -ne 10 ]; do + neutron floatingip-create public-net + i=$((i + 1)) +done + +# configure security groups +neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default +neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default + +# import key pair +nova keypair-add --pub-key id_rsa.pub ubuntu-keypair diff --git a/ci/opencontrail/cloud-sh-contrail/compute.sh b/ci/opencontrail/cloud-sh-contrail/compute.sh new file mode 100755 index 00000000..eb818250 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/compute.sh @@ -0,0 +1,8 @@ +#!/bin/sh -e + +modprobe kvm_intel +printf "\n%s\n" kvm_intel >> /etc/modules +service libvirt-bin restart + +sed -e 's/KSM_ENABLED=1/KSM_ENABLED=0/' -i /etc/default/qemu-kvm +service qemu-kvm restart diff --git a/ci/opencontrail/cloud-sh-contrail/config-precise.sh b/ci/opencontrail/cloud-sh-contrail/config-precise.sh new file mode 100644 index 00000000..7ef7f322 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/config-precise.sh @@ -0,0 +1,51 @@ +export JUJU_REPOSITORY=../charms + +DEFAULT_SERIES=precise + +CHARM_CASSANDRA=local:precise/cassandra +CHARM_CASSANDRA_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_CONTRAIL_ANALYTICS=local:precise/contrail-analytics +CHARM_CONTRAIL_ANALYTICS_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_CONTRAIL_CONFIGURATION=local:precise/contrail-configuration +CHARM_CONTRAIL_CONFIGURATION_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_CONTRAIL_CONTROL=local:precise/contrail-control +CHARM_CONTRAIL_CONTROL_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_CONTRAIL_WEBUI=local:trusty/contrail-webui + +CHARM_GLANCE=local:precise/glance +CHARM_GLANCE_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_KEYSTONE=local:precise/keystone +CHARM_KEYSTONE_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_MYSQL=precise/mysql +CHARM_MYSQL_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_NEUTRON_API=local:precise/neutron-api +CHARM_NEUTRON_API_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_NEUTRON_API_CONTRAIL=local:precise/neutron-api-contrail + +CHARM_NEUTRON_CONTRAIL=local:precise/neutron-contrail + +CHARM_NEUTRON_GATEWAY=local:precise/quantum-gateway +CHARM_NEUTRON_GATEWAY_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_NOVA_CLOUD_CONTROLLER=local:precise/nova-cloud-controller +CHARM_NOVA_CLOUD_CONTROLLER_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_NOVA_COMPUTE=local:precise/nova-compute +CHARM_NOVA_COMPUTE_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_OPENSTACK_DASHBOARD=local:precise/openstack-dashboard +CHARM_OPENSTACK_DASHBOARD_DEPLOY_OPTS="--config config-precise.yaml" + +CHARM_RABBITMQ_SERVER=precise/rabbitmq-server + +CHARM_ZOOKEEPER=local:precise/zookeeper + +CONFIGURE_HOST_ROUTING=true diff --git a/ci/opencontrail/cloud-sh-contrail/config-precise.yaml b/ci/opencontrail/cloud-sh-contrail/config-precise.yaml new file mode 100644 index 00000000..72c08b67 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/config-precise.yaml @@ -0,0 +1,40 @@ +cassandra: + allow-single-node: true + +contrail-analytics: + openstack-origin: cloud:precise-icehouse + +contrail-configuration: + openstack-origin: cloud:precise-icehouse + +contrail-control: + openstack-origin: cloud:precise-icehouse + +glance: + openstack-origin: cloud:precise-icehouse + +keystone: + admin-password: password + admin-role: admin + openstack-origin: cloud:precise-icehouse + +mysql: + dataset-size: 15% + +neutron-api: + manage-neutron-plugin-legacy-mode: false + openstack-origin: cloud:precise-icehouse + +neutron-gateway: + openstack-origin: cloud:precise-icehouse + +nova-cloud-controller: + network-manager: Neutron + openstack-origin: cloud:precise-icehouse + +nova-compute: + manage-neutron-plugin-legacy-mode: false + openstack-origin: cloud:precise-icehouse + +openstack-dashboard: + openstack-origin: cloud:precise-icehouse diff --git a/ci/opencontrail/cloud-sh-contrail/config-trusty-juno.sh b/ci/opencontrail/cloud-sh-contrail/config-trusty-juno.sh new file mode 100644 index 00000000..6719e874 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/config-trusty-juno.sh @@ -0,0 +1,51 @@ +export JUJU_REPOSITORY=../charms + +DEFAULT_SERIES=trusty + +CHARM_CASSANDRA=local:precise/cassandra +CHARM_CASSANDRA_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_CONTRAIL_ANALYTICS=local:trusty/contrail-analytics +CHARM_CONTRAIL_ANALYTICS_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_CONTRAIL_CONFIGURATION=local:trusty/contrail-configuration +CHARM_CONTRAIL_CONFIGURATION_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_CONTRAIL_CONTROL=local:trusty/contrail-control +CHARM_CONTRAIL_CONTROL_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_CONTRAIL_WEBUI=local:trusty/contrail-webui + +CHARM_GLANCE=local:trusty/glance +CHARM_GLANCE_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_KEYSTONE=local:trusty/keystone +CHARM_KEYSTONE_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_MYSQL=trusty/mysql +CHARM_MYSQL_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_NEUTRON_API=local:trusty/neutron-api +CHARM_NEUTRON_API_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_NEUTRON_API_CONTRAIL=local:trusty/neutron-api-contrail + +CHARM_NEUTRON_CONTRAIL=local:trusty/neutron-contrail + +CHARM_NEUTRON_GATEWAY=local:trusty/quantum-gateway +CHARM_NEUTRON_GATEWAY_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_NOVA_CLOUD_CONTROLLER=local:trusty/nova-cloud-controller +CHARM_NOVA_CLOUD_CONTROLLER_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_NOVA_COMPUTE=local:trusty/nova-compute +CHARM_NOVA_COMPUTE_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_OPENSTACK_DASHBOARD=local:trusty/openstack-dashboard +CHARM_OPENSTACK_DASHBOARD_DEPLOY_OPTS="--config config-trusty-juno.yaml" + +CHARM_RABBITMQ_SERVER=trusty/rabbitmq-server + +CHARM_ZOOKEEPER=local:precise/zookeeper + +CONFIGURE_HOST_ROUTING=true diff --git a/ci/opencontrail/cloud-sh-contrail/config-trusty-juno.yaml b/ci/opencontrail/cloud-sh-contrail/config-trusty-juno.yaml new file mode 100644 index 00000000..3767364d --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/config-trusty-juno.yaml @@ -0,0 +1,40 @@ +cassandra: + allow-single-node: true + +contrail-analytics: + openstack-origin: cloud:trusty-juno + +contrail-configuration: + openstack-origin: cloud:trusty-juno + +contrail-control: + openstack-origin: cloud:trusty-juno + +glance: + openstack-origin: cloud:trusty-juno + +keystone: + admin-password: password + admin-role: admin + openstack-origin: cloud:trusty-juno + +mysql: + dataset-size: 15% + +neutron-api: + manage-neutron-plugin-legacy-mode: false + openstack-origin: cloud:trusty-juno + +neutron-gateway: + openstack-origin: cloud:trusty-juno + +nova-cloud-controller: + network-manager: Neutron + openstack-origin: cloud:trusty-juno + +nova-compute: + manage-neutron-plugin-legacy-mode: false + openstack-origin: cloud:trusty-juno + +openstack-dashboard: + openstack-origin: cloud:trusty-juno diff --git a/ci/opencontrail/cloud-sh-contrail/config-trusty.sh b/ci/opencontrail/cloud-sh-contrail/config-trusty.sh new file mode 100644 index 00000000..16743b0e --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/config-trusty.sh @@ -0,0 +1,45 @@ +export JUJU_REPOSITORY=../charms + +DEFAULT_SERIES=trusty + +CHARM_CASSANDRA=local:precise/cassandra +CHARM_CASSANDRA_DEPLOY_OPTS="--config config-trusty.yaml" + +CHARM_CONTRAIL_ANALYTICS=local:trusty/contrail-analytics + +CHARM_CONTRAIL_CONFIGURATION=local:trusty/contrail-configuration + +CHARM_CONTRAIL_CONTROL=local:trusty/contrail-control + +CHARM_CONTRAIL_WEBUI=local:trusty/contrail-webui + +CHARM_GLANCE=local:trusty/glance + +CHARM_KEYSTONE=local:trusty/keystone +CHARM_KEYSTONE_DEPLOY_OPTS="--config config-trusty.yaml" + +CHARM_MYSQL=trusty/mysql +CHARM_MYSQL_DEPLOY_OPTS="--config config-trusty.yaml" + +CHARM_NEUTRON_API=local:trusty/neutron-api +CHARM_NEUTRON_API_DEPLOY_OPTS="--config config-trusty.yaml" + +CHARM_NEUTRON_API_CONTRAIL=local:trusty/neutron-api-contrail + +CHARM_NEUTRON_CONTRAIL=local:trusty/neutron-contrail + +CHARM_NEUTRON_GATEWAY=local:trusty/quantum-gateway + +CHARM_NOVA_CLOUD_CONTROLLER=local:trusty/nova-cloud-controller +CHARM_NOVA_CLOUD_CONTROLLER_DEPLOY_OPTS="--config config-trusty.yaml" + +CHARM_NOVA_COMPUTE=local:trusty/nova-compute +CHARM_NOVA_COMPUTE_DEPLOY_OPTS="--config config-trusty.yaml" + +CHARM_OPENSTACK_DASHBOARD=local:trusty/openstack-dashboard + +CHARM_RABBITMQ_SERVER=trusty/rabbitmq-server + +CHARM_ZOOKEEPER=local:precise/zookeeper + +CONFIGURE_HOST_ROUTING=true diff --git a/ci/opencontrail/cloud-sh-contrail/config-trusty.yaml b/ci/opencontrail/cloud-sh-contrail/config-trusty.yaml new file mode 100644 index 00000000..7d4bf58d --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/config-trusty.yaml @@ -0,0 +1,18 @@ +cassandra: + allow-single-node: true + +keystone: + admin-password: password + admin-role: admin + +mysql: + dataset-size: 15% + +neutron-api: + manage-neutron-plugin-legacy-mode: false + +nova-cloud-controller: + network-manager: Neutron + +nova-compute: + manage-neutron-plugin-legacy-mode: false diff --git a/ci/opencontrail/cloud-sh-contrail/deploy-precise.sh b/ci/opencontrail/cloud-sh-contrail/deploy-precise.sh new file mode 100755 index 00000000..2e35546b --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/deploy-precise.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +exec ./openstack.sh ./config-precise.sh 2>&1 | tee out.log diff --git a/ci/opencontrail/cloud-sh-contrail/deploy-trusty-juno.sh b/ci/opencontrail/cloud-sh-contrail/deploy-trusty-juno.sh new file mode 100755 index 00000000..27a9d56f --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/deploy-trusty-juno.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +exec ./openstack.sh ./config-trusty-juno.sh 2>&1 | tee out.log diff --git a/ci/opencontrail/cloud-sh-contrail/deploy-trusty.sh b/ci/opencontrail/cloud-sh-contrail/deploy-trusty.sh new file mode 100755 index 00000000..b7b21de0 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/deploy-trusty.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +exec ./openstack.sh ./config-trusty.sh 2>&1 | tee out.log diff --git a/ci/opencontrail/cloud-sh-contrail/environments.yaml b/ci/opencontrail/cloud-sh-contrail/environments.yaml new file mode 100644 index 00000000..72a492d3 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/environments.yaml @@ -0,0 +1,8 @@ +default: local + +environments: + local: + type: local + container: kvm + default-series: trusty + lxc-clone: true diff --git a/ci/opencontrail/cloud-sh-contrail/glance.sh b/ci/opencontrail/cloud-sh-contrail/glance.sh new file mode 100755 index 00000000..467932ff --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/glance.sh @@ -0,0 +1,8 @@ +#!/bin/sh -e + +. ~/admin-openrc + +wget http://cloud-images.ubuntu.com/trusty/current/MD5SUMS + +wget http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img +glance image-create --name ubuntu-trusty-daily --disk-format qcow2 --container-format bare --owner admin --file trusty-server-cloudimg-amd64-disk1.img --checksum $(grep trusty-server-cloudimg-amd64-disk1.img MD5SUMS | cut -d " " -f 1) --is-public True diff --git a/ci/opencontrail/cloud-sh-contrail/lxc-network.sh b/ci/opencontrail/cloud-sh-contrail/lxc-network.sh new file mode 100755 index 00000000..5a65fa18 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/lxc-network.sh @@ -0,0 +1,18 @@ +#!/bin/sh -e + +DEBIAN_FRONTEND=noninteractive apt-get -qy -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold install lxc < /dev/null + +sed -e 's/^USE_LXC_BRIDGE="true"/USE_LXC_BRIDGE="false"/' -i /etc/default/lxc +service lxc-net restart + +ifdown eth0 +mv /etc/network/interfaces.d/eth0.cfg /etc/network/interfaces.d/eth0.cfg.bak +cat <<-"EOF" > /etc/network/interfaces.d/bridge.cfg + auto eth0 + iface eth0 inet manual + + auto lxcbr0 + iface lxcbr0 inet dhcp + bridge_ports eth0 + EOF +ifup eth0 lxcbr0 diff --git a/ci/opencontrail/cloud-sh-contrail/openstack.sh b/ci/opencontrail/cloud-sh-contrail/openstack.sh new file mode 100755 index 00000000..960a9934 --- /dev/null +++ b/ci/opencontrail/cloud-sh-contrail/openstack.sh @@ -0,0 +1,193 @@ +#!/bin/sh -ex + +agentState() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"machines\"][\"$1\"][\"agent-state\"]" 2> /dev/null +} + +agentStateUnit() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"agent-state\"]" 2> /dev/null +} + +configOpenrc() +{ + cat <<-EOF + export OS_USERNAME=$1 + export OS_PASSWORD=$2 + export OS_TENANT_NAME=$3 + export OS_AUTH_URL=$4 + export OS_REGION_NAME=$5 + EOF +} + +unitAddress() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null +} + +unitMachine() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null +} + +waitForMachine() +{ + for machine; do + while [ "$(agentState $machine)" != started ]; do + sleep 5 + done + done +} + +waitForService() +{ + for service; do + while [ "$(agentStateUnit "$service" 0)" != started ]; do + sleep 5 + done + done +} + +if [ $# -ne 0 ]; then + . "$1" +fi + +juju bootstrap +waitForMachine 0 + +spare_cpus=$(($(grep processor /proc/cpuinfo | wc -l) - 5)) +if [ $spare_cpus -gt 0 ]; then + spare_cpus=$(((spare_cpus * 3) / 4)) +else + spare_cpus=0 +fi + +extra_cpus=0 +[ $spare_cpus -ne 0 ] && extra_cpus=$((1 + (((spare_cpus - 1) * 3) / 4))) && spare_cpus=$((spare_cpus - extra_cpus)) +juju add-machine --constraints "cpu-cores=$((1 + extra_cpus)) mem=12G root-disk=20G" --series $DEFAULT_SERIES + +juju deploy --constraints mem=1G $CHARM_NEUTRON_GATEWAY_DEPLOY_OPTS "${CHARM_NEUTRON_GATEWAY:-quantum-gateway}" neutron-gateway + +extra_cpus=0 +[ $spare_cpus -ne 0 ] && extra_cpus=$((1 + (((spare_cpus - 1) * 3) / 4))) && spare_cpus=$((spare_cpus - extra_cpus)) +juju deploy --constraints "cpu-cores=$((1 + extra_cpus)) mem=4G root-disk=20G" $CHARM_NOVA_COMPUTE_DEPLOY_OPTS "${CHARM_NOVA_COMPUTE:-nova-compute}" + +juju add-machine --constraints "cpu-cores=$((1 + spare_cpus)) mem=8G root-disk=20G" --series $DEFAULT_SERIES + +waitForMachine 1 +juju scp lxc-network.sh 1: +juju run --machine 1 "sudo ./lxc-network.sh" + +waitForMachine 4 +juju scp lxc-network.sh 4: +juju run --machine 4 "sudo ./lxc-network.sh" + +juju deploy --to lxc:1 $CHARM_MYSQL_DEPLOY_OPTS "${CHARM_MYSQL:-mysql}" +juju deploy --to lxc:1 $CHARM_RABBITMQ_SERVER_DEPLOY_OPTS "${CHARM_RABBITMQ_SERVER:-rabbitmq-server}" +juju deploy --to lxc:1 $CHARM_KEYSTONE_DEPLOY_OPTS "${CHARM_KEYSTONE:-keystone}" +juju deploy --to lxc:1 $CHARM_NOVA_CLOUD_CONTROLLER_DEPLOY_OPTS "${CHARM_NOVA_CLOUD_CONTROLLER:-nova-cloud-controller}" +juju deploy --to lxc:1 $CHARM_NEUTRON_API_DEPLOY_OPTS "${CHARM_NEUTRON_API:-neutron-api}" +juju deploy --to lxc:1 $CHARM_GLANCE_DEPLOY_OPTS "${CHARM_GLANCE:-glance}" +juju deploy --to lxc:1 $CHARM_OPENSTACK_DASHBOARD_DEPLOY_OPTS "${CHARM_OPENSTACK_DASHBOARD:-openstack-dashboard}" +# contrail +juju deploy --to lxc:1 $CHARM_ZOOKEEPER_DEPLOY_OPTS "${CHARM_ZOOKEEPER:-zookeeper}" +juju deploy --to lxc:1 $CHARM_CONTRAIL_CONFIGURATION_DEPLOY_OPTS "${CHARM_CONTRAIL_CONFIGURATION:-contrail-configuration}" +juju deploy --to lxc:1 $CHARM_CONTRAIL_CONTROL_DEPLOY_OPTS "${CHARM_CONTRAIL_CONTROL:-contrail-control}" +juju deploy --to lxc:1 $CHARM_CONTRAIL_ANALYTICS_DEPLOY_OPTS "${CHARM_CONTRAIL_ANALYTICS:-contrail-analytics}" +juju deploy --to lxc:1 $CHARM_CONTRAIL_WEBUI_DEPLOY_OPTS "${CHARM_CONTRAIL_WEBUI:-contrail-webui}" +juju deploy --to lxc:4 $CHARM_CASSANDRA_DEPLOY_OPTS "${CHARM_CASSANDRA:-cassandra}" +juju deploy $CHARM_NEUTRON_API_CONTRAIL_DEPLOY_OPTS "${CHARM_NEUTRON_API_CONTRAIL:-neutron-api-contrail}" +juju deploy $CHARM_NEUTRON_CONTRAIL_DEPLOY_OPTS "${CHARM_NEUTRON_CONTRAIL:-neutron-contrail}" + +# relation must be set first +# no official way of knowing when this relation hook will fire +waitForService mysql keystone +juju add-relation keystone mysql +sleep 60 + +waitForService rabbitmq-server nova-cloud-controller glance openstack-dashboard neutron-gateway nova-compute +juju add-relation nova-cloud-controller mysql +juju add-relation nova-cloud-controller rabbitmq-server +juju add-relation nova-cloud-controller glance +juju add-relation nova-cloud-controller keystone +juju add-relation neutron-gateway mysql +juju add-relation neutron-gateway:amqp rabbitmq-server:amqp +juju add-relation neutron-gateway nova-cloud-controller +juju add-relation nova-compute:shared-db mysql:shared-db +juju add-relation nova-compute:amqp rabbitmq-server:amqp +juju add-relation nova-compute glance +juju add-relation nova-compute nova-cloud-controller +juju add-relation glance mysql +juju add-relation glance keystone +juju add-relation openstack-dashboard keystone +sleep 60 + +waitForService neutron-api +juju add-relation neutron-api mysql +juju add-relation neutron-api rabbitmq-server +juju add-relation neutron-api nova-cloud-controller +juju add-relation neutron-api keystone +juju add-relation neutron-api neutron-api-contrail +sleep 60 + +# contrail +waitForService cassandra zookeeper contrail-configuration +juju add-relation contrail-configuration:cassandra cassandra:database +juju add-relation contrail-configuration zookeeper +juju add-relation contrail-configuration rabbitmq-server +juju add-relation contrail-configuration keystone +juju add-relation contrail-configuration neutron-gateway +sleep 60 + +waitForService contrail-control contrail-analytics +juju add-relation neutron-api-contrail contrail-configuration +juju add-relation neutron-api-contrail keystone +juju add-relation contrail-control:contrail-discovery contrail-configuration:contrail-discovery +juju add-relation contrail-control:contrail-ifmap contrail-configuration:contrail-ifmap +juju add-relation contrail-analytics:cassandra cassandra:database +juju add-relation contrail-analytics contrail-configuration +juju add-relation nova-compute neutron-contrail +juju add-relation neutron-contrail:contrail-discovery contrail-configuration:contrail-discovery +juju add-relation neutron-contrail neutron-gateway +juju add-relation neutron-contrail:contrail-api contrail-configuration:contrail-api +juju add-relation neutron-contrail keystone +sleep 60 + +waitForService contrail-webui +juju add-relation contrail-webui keystone +juju add-relation contrail-webui:contrail_api contrail-configuration:contrail-api +juju add-relation contrail-webui:contrail_discovery contrail-configuration:contrail-discovery +juju add-relation contrail-webui:cassandra cassandra:database +sleep 60 + +# enable kvm on compute +machine=$(unitMachine nova-compute 0) +juju scp compute.sh $machine: +juju run --machine $machine "sudo ./compute.sh" + +mkdir -m 0700 -p cloud +controller_address=$(unitAddress keystone 0) +configOpenrc admin password Admin http://$controller_address:5000/v2.0 RegionOne > cloud/admin-openrc +chmod 0600 cloud/admin-openrc + +machine=$(unitMachine nova-cloud-controller 0) +juju scp cloud-setup.sh cloud/admin-openrc ~/.ssh/id_rsa.pub $machine: +juju run --machine $machine ./cloud-setup.sh + +# setup contrail routing +juju set contrail-configuration "floating-ip-pools=[ { project: admin, network: public-net, pool-name: floatingip_pool, target-projects: [ admin ] } ]" +juju set neutron-contrail "virtual-gateways=[ { project: admin, network: public-net, interface: vgw, subnets: [ 10.0.10.0/24 ], routes: [ 0.0.0.0/0 ] } ]" + +machine=$(unitMachine glance 0) +juju scp glance.sh cloud/admin-openrc $machine: +juju run --machine $machine ./glance.sh + +# setup host routing +if [ -n "$CONFIGURE_HOST_ROUTING" ]; then + compute_address=$(unitAddress nova-compute 0) + sudo ip route replace 10.0.10.0/24 via $compute_address + sudo iptables -C FORWARD -s 10.0.10.0/24 -j ACCEPT 2> /dev/null || sudo iptables -I FORWARD 1 -s 10.0.10.0/24 -j ACCEPT + sudo iptables -C FORWARD -d 10.0.10.0/24 -j ACCEPT 2> /dev/null || sudo iptables -I FORWARD 2 -d 10.0.10.0/24 -j ACCEPT + sudo iptables -t nat -C POSTROUTING -s 10.0.10.0/24 ! -d 10.0.10.0/24 -j MASQUERADE 2> /dev/null || sudo iptables -t nat -A POSTROUTING -s 10.0.10.0/24 ! -d 10.0.10.0/24 -j MASQUERADE +fi diff --git a/ci/opencontrail/fetch-charms.sh b/ci/opencontrail/fetch-charms.sh new file mode 100755 index 00000000..911dc55d --- /dev/null +++ b/ci/opencontrail/fetch-charms.sh @@ -0,0 +1,27 @@ +#!/bin/sh -ex + +mkdir -p src/charms/trusty src/charms/precise + +# openstack +bzr branch lp:~openstack-charmers/charms/trusty/glance/next src/charms/trusty/glance-next +bzr branch lp:~openstack-charmers/charms/trusty/keystone/next src/charms/trusty/keystone-next +bzr branch lp:~openstack-charmers/charms/trusty/neutron-api/vpp src/charms/trusty/neutron-api-vpp +bzr branch lp:~openstack-charmers/charms/trusty/nova-cloud-controller/next src/charms/trusty/nova-cloud-controller-next +bzr branch lp:~openstack-charmers/charms/trusty/nova-compute/next src/charms/trusty/nova-compute-next +bzr branch lp:~openstack-charmers/charms/trusty/openstack-dashboard/next src/charms/trusty/openstack-dashboard-next +bzr branch lp:~sdn-charmers/charms/trusty/quantum-gateway/contrail src/charms/trusty/quantum-gateway-contrail + +# contrail +bzr branch lp:~sdn-charmers/charms/precise/cassandra/forced-install src/charms/precise/cassandra-forced-install +bzr branch lp:~sdn-charmers/charms/trusty/contrail-analytics/trunk src/charms/trusty/contrail-analytics +bzr branch lp:~sdn-charmers/charms/trusty/contrail-configuration/trunk src/charms/trusty/contrail-configuration +bzr branch lp:~sdn-charmers/charms/trusty/contrail-control/trunk src/charms/trusty/contrail-control +bzr branch lp:~sdn-charmers/charms/trusty/contrail-webui/trunk src/charms/trusty/contrail-webui +bzr branch lp:~sdn-charmers/charms/trusty/neutron-api-contrail/trunk src/charms/trusty/neutron-api-contrail +bzr branch lp:~sdn-charmers/charms/trusty/neutron-contrail/trunk src/charms/trusty/neutron-contrail +bzr branch lp:~sdn-charmers/charms/precise/zookeeper/fix-symlink src/charms/precise/zookeeper-fix-symlink + +mkdir -p charms/trusty charms/precise +(cd charms/trusty; ln -s ../../src/charms/trusty/* .) +# symlink trusty charms to precise +(cd charms/precise; ln -s ../../src/charms/trusty/* .; ln -s ../../src/charms/precise/* .) diff --git a/ci/opencontrail/juju-deployer/contrail-ha.yaml b/ci/opencontrail/juju-deployer/contrail-ha.yaml new file mode 100644 index 00000000..d978c599 --- /dev/null +++ b/ci/opencontrail/juju-deployer/contrail-ha.yaml @@ -0,0 +1,149 @@ +openstack: + services: + mysql: + constraints: mem=1G + options: + dataset-size: 50% + rabbitmq-server: + constraints: mem=1G + keystone: + branch: lp:~openstack-charmers/charms/trusty/keystone/next + constraints: mem=1G + options: + admin-password: password + openstack-dashboard: + branch: lp:~openstack-charmers/charms/trusty/openstack-dashboard/next + constraints: mem=1G + nova-compute: + branch: lp:~openstack-charmers/charms/trusty/nova-compute/next + constraints: mem=4G root-disk=20G + options: + manage-neutron-plugin-legacy-mode: false + nova-cloud-controller: + branch: lp:~openstack-charmers/charms/trusty/nova-cloud-controller/next + constraints: mem=1G + options: + network-manager: Neutron + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/quantum-gateway/contrail + constraints: mem=1G + glance: + branch: lp:~openstack-charmers/charms/trusty/glance/next + constraints: mem=1G + neutron-api: + branch: lp:~openstack-charmers/charms/trusty/neutron-api/vpp + constraints: mem=1G + options: + manage-neutron-plugin-legacy-mode: false + relations: + - [ keystone, mysql ] + - [ nova-cloud-controller, mysql ] + - [ nova-cloud-controller, rabbitmq-server ] + - [ nova-cloud-controller, glance ] + - [ nova-cloud-controller, keystone ] + - [ nova-compute, nova-cloud-controller ] + - [ "nova-compute:shared-db", "mysql:shared-db" ] + - [ "nova-compute:amqp", "rabbitmq-server:amqp" ] + - [ nova-compute, glance ] + - [ glance, mysql ] + - [ glance, keystone ] + - [ neutron-gateway, mysql ] + - [ "neutron-gateway:amqp", "rabbitmq-server:amqp" ] + - [ neutron-gateway, nova-cloud-controller ] + - [ openstack-dashboard, keystone ] + - [ neutron-api, mysql ] + - [ neutron-api, rabbitmq-server ] + - [ neutron-api, nova-cloud-controller ] + - [ neutron-api, keystone ] + - [ neutron-api, neutron-api-contrail ] +contrail: + inherits: openstack + services: + cassandra: + branch: lp:~sdn-charmers/charms/precise/cassandra/forced-install + series: precise + constraints: mem=8G root-disk=20G + units: 3 + zookeeper: + branch: lp:~sdn-charmers/charms/precise/zookeeper/fix-symlink + series: precise + constraints: mem=1G + units: 3 + contrail-configuration: + branch: lp:~sdn-charmers/charms/trusty/contrail-configuration/trunk + constraints: mem=4G + options: + vip: x.x.x.x + units: 2 + contrail-control: + branch: lp:~sdn-charmers/charms/trusty/contrail-control/trunk + constraints: mem=2G + units: 2 + contrail-analytics: + branch: lp:~sdn-charmers/charms/trusty/contrail-analytics/trunk + constraints: mem=4G + units: 2 + contrail-webui: + branch: lp:~sdn-charmers/charms/trusty/contrail-webui/trunk + units: 2 + neutron-api-contrail: + branch: lp:~sdn-charmers/charms/trusty/neutron-api-contrail/trunk + neutron-contrail: + branch: lp:~sdn-charmers/charms/trusty/neutron-contrail/trunk + haproxy: + options: + peering_mode: active-active + units: 2 + keepalived: + branch: lp:~sdn-charmers/charms/trusty/keepalived/trunk + options: + virtual-ip: x.x.x.x + overrides: + admin-role: admin + relations: + - [ "contrail-configuration:cassandra", "cassandra:database" ] + - [ contrail-configuration, zookeeper ] + - [ contrail-configuration, rabbitmq-server ] + - [ contrail-configuration, keystone ] + - [ contrail-configuration, neutron-gateway ] + - [ neutron-api-contrail, contrail-configuration ] + - [ neutron-api-contrail, keystone ] + - [ "contrail-control:contrail-discovery", "contrail-configuration:contrail-discovery" ] + - [ "contrail-control:contrail-ifmap", "contrail-configuration:contrail-ifmap" ] + - [ "contrail-analytics:cassandra", "cassandra:database" ] + - [ contrail-analytics, contrail-configuration ] + - [ contrail-webui, keystone ] + - [ "contrail-webui:contrail_api", "contrail-configuration:contrail-api" ] + - [ "contrail-webui:contrail_discovery", "contrail-configuration:contrail-discovery" ] + - [ "contrail-webui:cassandra", "cassandra:database" ] + - [ nova-compute, neutron-contrail ] + - [ "neutron-contrail:contrail-discovery", "contrail-configuration:contrail-discovery" ] + - [ neutron-contrail, neutron-gateway ] + - [ "neutron-contrail:contrail-api", "contrail-configuration:contrail-api" ] + - [ neutron-contrail, keystone ] + - [ contrail-configuration, haproxy ] + - [ contrail-analytics, haproxy ] + - [ contrail-webui, haproxy ] + - [ haproxy, keepalived ] +trusty-icehouse-contrail: + inherits: contrail + series: trusty + services: + haproxy: + charm: cs:trusty/haproxy + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server +trusty-juno-contrail: + inherits: contrail + series: trusty + services: + haproxy: + charm: cs:trusty/haproxy + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + overrides: + openstack-origin: cloud:trusty-juno diff --git a/ci/opencontrail/juju-deployer/contrail-tip.yaml b/ci/opencontrail/juju-deployer/contrail-tip.yaml new file mode 100644 index 00000000..d978c599 --- /dev/null +++ b/ci/opencontrail/juju-deployer/contrail-tip.yaml @@ -0,0 +1,149 @@ +openstack: + services: + mysql: + constraints: mem=1G + options: + dataset-size: 50% + rabbitmq-server: + constraints: mem=1G + keystone: + branch: lp:~openstack-charmers/charms/trusty/keystone/next + constraints: mem=1G + options: + admin-password: password + openstack-dashboard: + branch: lp:~openstack-charmers/charms/trusty/openstack-dashboard/next + constraints: mem=1G + nova-compute: + branch: lp:~openstack-charmers/charms/trusty/nova-compute/next + constraints: mem=4G root-disk=20G + options: + manage-neutron-plugin-legacy-mode: false + nova-cloud-controller: + branch: lp:~openstack-charmers/charms/trusty/nova-cloud-controller/next + constraints: mem=1G + options: + network-manager: Neutron + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/quantum-gateway/contrail + constraints: mem=1G + glance: + branch: lp:~openstack-charmers/charms/trusty/glance/next + constraints: mem=1G + neutron-api: + branch: lp:~openstack-charmers/charms/trusty/neutron-api/vpp + constraints: mem=1G + options: + manage-neutron-plugin-legacy-mode: false + relations: + - [ keystone, mysql ] + - [ nova-cloud-controller, mysql ] + - [ nova-cloud-controller, rabbitmq-server ] + - [ nova-cloud-controller, glance ] + - [ nova-cloud-controller, keystone ] + - [ nova-compute, nova-cloud-controller ] + - [ "nova-compute:shared-db", "mysql:shared-db" ] + - [ "nova-compute:amqp", "rabbitmq-server:amqp" ] + - [ nova-compute, glance ] + - [ glance, mysql ] + - [ glance, keystone ] + - [ neutron-gateway, mysql ] + - [ "neutron-gateway:amqp", "rabbitmq-server:amqp" ] + - [ neutron-gateway, nova-cloud-controller ] + - [ openstack-dashboard, keystone ] + - [ neutron-api, mysql ] + - [ neutron-api, rabbitmq-server ] + - [ neutron-api, nova-cloud-controller ] + - [ neutron-api, keystone ] + - [ neutron-api, neutron-api-contrail ] +contrail: + inherits: openstack + services: + cassandra: + branch: lp:~sdn-charmers/charms/precise/cassandra/forced-install + series: precise + constraints: mem=8G root-disk=20G + units: 3 + zookeeper: + branch: lp:~sdn-charmers/charms/precise/zookeeper/fix-symlink + series: precise + constraints: mem=1G + units: 3 + contrail-configuration: + branch: lp:~sdn-charmers/charms/trusty/contrail-configuration/trunk + constraints: mem=4G + options: + vip: x.x.x.x + units: 2 + contrail-control: + branch: lp:~sdn-charmers/charms/trusty/contrail-control/trunk + constraints: mem=2G + units: 2 + contrail-analytics: + branch: lp:~sdn-charmers/charms/trusty/contrail-analytics/trunk + constraints: mem=4G + units: 2 + contrail-webui: + branch: lp:~sdn-charmers/charms/trusty/contrail-webui/trunk + units: 2 + neutron-api-contrail: + branch: lp:~sdn-charmers/charms/trusty/neutron-api-contrail/trunk + neutron-contrail: + branch: lp:~sdn-charmers/charms/trusty/neutron-contrail/trunk + haproxy: + options: + peering_mode: active-active + units: 2 + keepalived: + branch: lp:~sdn-charmers/charms/trusty/keepalived/trunk + options: + virtual-ip: x.x.x.x + overrides: + admin-role: admin + relations: + - [ "contrail-configuration:cassandra", "cassandra:database" ] + - [ contrail-configuration, zookeeper ] + - [ contrail-configuration, rabbitmq-server ] + - [ contrail-configuration, keystone ] + - [ contrail-configuration, neutron-gateway ] + - [ neutron-api-contrail, contrail-configuration ] + - [ neutron-api-contrail, keystone ] + - [ "contrail-control:contrail-discovery", "contrail-configuration:contrail-discovery" ] + - [ "contrail-control:contrail-ifmap", "contrail-configuration:contrail-ifmap" ] + - [ "contrail-analytics:cassandra", "cassandra:database" ] + - [ contrail-analytics, contrail-configuration ] + - [ contrail-webui, keystone ] + - [ "contrail-webui:contrail_api", "contrail-configuration:contrail-api" ] + - [ "contrail-webui:contrail_discovery", "contrail-configuration:contrail-discovery" ] + - [ "contrail-webui:cassandra", "cassandra:database" ] + - [ nova-compute, neutron-contrail ] + - [ "neutron-contrail:contrail-discovery", "contrail-configuration:contrail-discovery" ] + - [ neutron-contrail, neutron-gateway ] + - [ "neutron-contrail:contrail-api", "contrail-configuration:contrail-api" ] + - [ neutron-contrail, keystone ] + - [ contrail-configuration, haproxy ] + - [ contrail-analytics, haproxy ] + - [ contrail-webui, haproxy ] + - [ haproxy, keepalived ] +trusty-icehouse-contrail: + inherits: contrail + series: trusty + services: + haproxy: + charm: cs:trusty/haproxy + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server +trusty-juno-contrail: + inherits: contrail + series: trusty + services: + haproxy: + charm: cs:trusty/haproxy + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + overrides: + openstack-origin: cloud:trusty-juno diff --git a/ci/opencontrail/juju-deployer/contrail.yaml b/ci/opencontrail/juju-deployer/contrail.yaml new file mode 100644 index 00000000..c2f48789 --- /dev/null +++ b/ci/opencontrail/juju-deployer/contrail.yaml @@ -0,0 +1,191 @@ +openstack: + services: + ubuntu: + branch: "lp:charms/trusty/ubuntu" + constraints: tags=physical + num_units: 2 + + mysql: + constraints: mem=1G + options: + dataset-size: 50% + max-connections: 20000 + to: + - "lxc:ubuntu=0" + + rabbitmq-server: + constraints: mem=1G + to: + - "lxc:ubuntu=0" + + keystone: + branch: lp:~openstack-charmers/charms/trusty/keystone/next + constraints: mem=1G + options: + admin-password: openstack + admin-role: admin + to: + - "lxc:ubuntu=0" + + openstack-dashboard: + branch: lp:~openstack-charmers/charms/trusty/openstack-dashboard/next + constraints: mem=1G + to: + - "lxc:ubuntu=0" + + nova-compute: + branch: lp:~openstack-charmers/charms/trusty/nova-compute/next + constraints: tags=physical + num_units: 2 + to: + - "ubuntu=0" + - "ubuntu=1" + options: + manage-neutron-plugin-legacy-mode: false + nova-cloud-controller: + branch: lp:~openstack-charmers/charms/trusty/nova-cloud-controller/next + constraints: mem=1G + options: + network-manager: Neutron + to: + - "lxc:ubuntu=0" + + neutron-gateway: + branch: lp:~sdn-charmers/charms/trusty/quantum-gateway/contrail + constraints: tags=virtual + + glance: + branch: lp:~openstack-charmers/charms/trusty/glance/next + constraints: mem=1G + to: + - "lxc:ubuntu=0" + + neutron-api: + branch: lp:~openstack-charmers/charms/trusty/neutron-api/vpp + constraints: tags=virtual + to: + - "lxc:ubuntu=0" + options: + manage-neutron-plugin-legacy-mode: false + relations: + - [ keystone, mysql ] + - [ nova-cloud-controller, mysql ] + - [ nova-cloud-controller, rabbitmq-server ] + - [ nova-cloud-controller, glance ] + - [ nova-cloud-controller, keystone ] + - [ nova-compute, nova-cloud-controller ] + - [ "nova-compute:shared-db", "mysql:shared-db" ] + - [ "nova-compute:amqp", "rabbitmq-server:amqp" ] + - [ nova-compute, glance ] + - [ glance, mysql ] + - [ glance, keystone ] + - [ neutron-gateway, mysql ] + - [ "neutron-gateway:amqp", "rabbitmq-server:amqp" ] + - [ neutron-gateway, nova-cloud-controller ] + - [ openstack-dashboard, keystone ] + - [ neutron-api, mysql ] + - [ neutron-api, rabbitmq-server ] + - [ neutron-api, nova-cloud-controller ] + - [ neutron-api, keystone ] + - [ neutron-api, neutron-api-contrail ] +contrail: + inherits: openstack + services: + cassandra: + branch: lp:~sdn-charmers/charms/precise/cassandra/forced-install + series: precise + constraints: tags=physical + options: + allow-single-node: true + + zookeeper: + branch: lp:~sdn-charmers/charms/precise/zookeeper/fix-symlink + series: precise + constraints: mem=1G + to: + - "lxc:cassandra=0" + + contrail-configuration: + branch: lp:~sdn-charmers/charms/trusty/contrail-configuration/ssl + constraints: mem=4G + to: + - "lxc:ubuntu=0" +# options: +# floating-ip-pools: "[ { project: admin, network: public, pool-name: floatingip_pool, target-projects: [ admin ] } ]" + + contrail-control: + branch: lp:~sdn-charmers/charms/trusty/contrail-control/trunk + constraints: mem=2G + to: + - "lxc:ubuntu=0" + + contrail-analytics: + branch: lp:~sdn-charmers/charms/trusty/contrail-analytics/trunk + constraints: mem=4G + to: + - "lxc:ubuntu=0" + + contrail-webui: + branch: lp:~sdn-charmers/charms/trusty/contrail-webui/trunk + to: + - "lxc:ubuntu=0" + + neutron-api-contrail: + branch: lp:~sdn-charmers/charms/trusty/neutron-api-contrail/trunk +# options: +# overlay-network-type: 'vxlan gre' +# security-groups: true + + neutron-contrail: + branch: lp:~sdn-charmers/charms/trusty/neutron-contrail/trunk + overrides: + admin-role: admin + relations: + - [ "contrail-configuration:cassandra", "cassandra:database" ] + - [ neutron-api-contrail, contrail-configuration ] + - [ neutron-api-contrail, keystone ] + - [ "contrail-control:contrail-discovery", "contrail-configuration:contrail-discovery" ] + - [ "contrail-control:contrail-ifmap", "contrail-configuration:contrail-ifmap" ] + - [ "contrail-analytics:cassandra", "cassandra:database" ] + - [ contrail-analytics, contrail-configuration ] + - [ contrail-webui, keystone ] + - [ "contrail-webui:contrail_api", "contrail-configuration:contrail-api" ] + - [ "contrail-webui:contrail_discovery", "contrail-configuration:contrail-discovery" ] + - [ "contrail-webui:cassandra", "cassandra:database" ] + - [ nova-compute, neutron-contrail ] + - [ "neutron-contrail:contrail-discovery", "contrail-configuration:contrail-discovery" ] + - [ neutron-contrail, neutron-gateway ] + - [ "neutron-contrail:contrail-api", "contrail-configuration:contrail-api" ] + - [ neutron-contrail, keystone ] + - [ contrail-configuration, zookeeper ] + - [ contrail-configuration, rabbitmq-server ] + - [ contrail-configuration, keystone ] + - [ contrail-configuration, neutron-gateway ] +precise-icehouse-contrail: + inherits: contrail + series: precise + services: + mysql: + charm: cs:precise/mysql + rabbitmq-server: + charm: cs:precise/rabbitmq-server + overrides: + openstack-origin: cloud:precise-icehouse +trusty-icehouse-contrail: + inherits: contrail + series: trusty + services: + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server +trusty-juno-contrail: + inherits: contrail + series: trusty + services: + mysql: + charm: cs:trusty/mysql + rabbitmq-server: + charm: cs:trusty/rabbitmq-server + overrides: + openstack-origin: cloud:trusty-juno diff --git a/ci/opencontrail/juju-deployer/scripts/cloud-setup.sh b/ci/opencontrail/juju-deployer/scripts/cloud-setup.sh new file mode 100755 index 00000000..47e625c9 --- /dev/null +++ b/ci/opencontrail/juju-deployer/scripts/cloud-setup.sh @@ -0,0 +1,29 @@ +#!/bin/sh -e + +. ~/admin-openrc + +# adjust tiny image +nova flavor-delete m1.tiny +nova flavor-create m1.tiny 1 512 8 1 + +# configure external network +neutron net-create --router:external=True public-net +neutron subnet-create --name public-subnet --no-gateway --allocation-pool start=10.0.10.2,end=10.0.10.254 --disable-dhcp public-net 10.0.10.0/24 + +# create vm network +neutron net-create ubuntu-net +neutron subnet-create --name ubuntu-subnet --gateway 10.0.5.1 ubuntu-net 10.0.5.0/24 + +# create pool of floating ips +i=0 +while [ $i -ne 10 ]; do + neutron floatingip-create public-net + i=$((i + 1)) +done + +# configure security groups +neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default +neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default + +# import key pair +nova keypair-add --pub-key id_rsa.pub ubuntu-keypair diff --git a/ci/opencontrail/juju-deployer/scripts/glance.sh b/ci/opencontrail/juju-deployer/scripts/glance.sh new file mode 100755 index 00000000..467932ff --- /dev/null +++ b/ci/opencontrail/juju-deployer/scripts/glance.sh @@ -0,0 +1,8 @@ +#!/bin/sh -e + +. ~/admin-openrc + +wget http://cloud-images.ubuntu.com/trusty/current/MD5SUMS + +wget http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img +glance image-create --name ubuntu-trusty-daily --disk-format qcow2 --container-format bare --owner admin --file trusty-server-cloudimg-amd64-disk1.img --checksum $(grep trusty-server-cloudimg-amd64-disk1.img MD5SUMS | cut -d " " -f 1) --is-public True diff --git a/ci/opencontrail/juju-deployer/scripts/openstack.sh b/ci/opencontrail/juju-deployer/scripts/openstack.sh new file mode 100755 index 00000000..7c0a8ab0 --- /dev/null +++ b/ci/opencontrail/juju-deployer/scripts/openstack.sh @@ -0,0 +1,48 @@ +#!/bin/sh -ex + +configOpenrc() +{ + cat <<-EOF + export OS_USERNAME=$1 + export OS_PASSWORD=$2 + export OS_TENANT_NAME=$3 + export OS_AUTH_URL=$4 + export OS_REGION_NAME=$5 + EOF +} + +unitAddress() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null +} + +unitMachine() +{ + juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null +} + +mkdir -m 0700 -p cloud +controller_address=$(unitAddress keystone 0) +configOpenrc admin openstack admin http://$controller_address:5000/v2.0 RegionOne > cloud/admin-openrc +chmod 0600 cloud/admin-openrc + +machine=$(unitMachine nova-cloud-controller 0) +juju scp cloud-setup.sh cloud/admin-openrc ~/.ssh/id_rsa.pub $machine: +juju run --machine $machine ./cloud-setup.sh + +# setup contrail routing +juju set contrail-configuration "floating-ip-pools=[ { project: admin, network: public-net, pool-name: floatingip_pool, target-projects: [ admin ] } ]" +juju set neutron-contrail "virtual-gateways=[ { project: admin, network: public-net, interface: vgw, subnets: [ 10.0.10.0/24 ], routes: [ 0.0.0.0/0 ] } ]" + +machine=$(unitMachine glance 0) +juju scp glance.sh cloud/admin-openrc $machine: +juju run --machine $machine ./glance.sh + +# setup host routing +if [ -n "$CONFIGURE_HOST_ROUTING" ]; then + compute_address=$(dig +short $(unitAddress nova-compute 0) | tail -n 1) + sudo ip route replace 10.0.10.0/24 via $compute_address + sudo iptables -C FORWARD -s 10.0.10.0/24 -j ACCEPT 2> /dev/null || sudo iptables -I FORWARD 1 -s 10.0.10.0/24 -j ACCEPT + sudo iptables -C FORWARD -d 10.0.10.0/24 -j ACCEPT 2> /dev/null || sudo iptables -I FORWARD 2 -d 10.0.10.0/24 -j ACCEPT + sudo iptables -t nat -C POSTROUTING -s 10.0.10.0/24 ! -d 10.0.10.0/24 -j MASQUERADE 2> /dev/null || sudo iptables -t nat -A POSTROUTING -s 10.0.10.0/24 ! -d 10.0.10.0/24 -j MASQUERADE +fi diff --git a/ci/opencontrail/juju-deployer/source/cinder-master.yaml b/ci/opencontrail/juju-deployer/source/cinder-master.yaml new file mode 100644 index 00000000..b000d709 --- /dev/null +++ b/ci/opencontrail/juju-deployer/source/cinder-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: cinder, + repository: 'git://github.com/openstack/cinder', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/opencontrail/juju-deployer/source/glance-master.yaml b/ci/opencontrail/juju-deployer/source/glance-master.yaml new file mode 100644 index 00000000..94a0622b --- /dev/null +++ b/ci/opencontrail/juju-deployer/source/glance-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: glance, + repository: 'git://github.com/openstack/glance', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/opencontrail/juju-deployer/source/horizon-master.yaml b/ci/opencontrail/juju-deployer/source/horizon-master.yaml new file mode 100644 index 00000000..0fd7e501 --- /dev/null +++ b/ci/opencontrail/juju-deployer/source/horizon-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: horizon, + repository: 'git://github.com/openstack/horizon', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/opencontrail/juju-deployer/source/keystone-master.yaml b/ci/opencontrail/juju-deployer/source/keystone-master.yaml new file mode 100644 index 00000000..fb8575de --- /dev/null +++ b/ci/opencontrail/juju-deployer/source/keystone-master.yaml @@ -0,0 +1,10 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: keystone, + repository: 'git://github.com/openstack/keystone', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/opencontrail/juju-deployer/source/neutron-master.yaml b/ci/opencontrail/juju-deployer/source/neutron-master.yaml new file mode 100644 index 00000000..ee4c8932 --- /dev/null +++ b/ci/opencontrail/juju-deployer/source/neutron-master.yaml @@ -0,0 +1,19 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: neutron-fwaas, + repository: 'git://github.com/openstack/neutron-fwaas', + branch: master} + - {name: neutron-lbaas, + repository: 'git://github.com/openstack/neutron-lbaas', + branch: master} + - {name: neutron-vpnaas, + repository: 'git://github.com/openstack/neutron-vpnaas', + branch: master} + - {name: neutron, + repository: 'git://github.com/openstack/neutron', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 diff --git a/ci/opencontrail/juju-deployer/source/nova-master.yaml b/ci/opencontrail/juju-deployer/source/nova-master.yaml new file mode 100644 index 00000000..0bbee4c3 --- /dev/null +++ b/ci/opencontrail/juju-deployer/source/nova-master.yaml @@ -0,0 +1,13 @@ +repositories: + - {name: requirements, + repository: 'git://github.com/openstack/requirements', + branch: master} + - {name: neutron, + repository: 'git://github.com/openstack/neutron', + branch: master} + - {name: nova, + repository: 'git://github.com/openstack/nova', + branch: master} +directory: /mnt/openstack-git +#http_proxy: http://squid.internal:3128 +#https_proxy: http://squid.internal:3128 |