This repository is actively maintained via Gerrit so please let us know about any problems you find. You can ask for help on Slack but if no one replies right away, go ahead and open a bug on Launchpad and tag the bug with the tag "dev-env" and it will get looked at soon. You can also post to the new Google Group if you're having trouble but don't know if the problem is a bug or a mistake on your part.
For mac: https://docs.docker.com/docker-for-mac/install/#download-docker-for-mac
For CentOS/RHEL/Fedora linux host:
yum install docker
For Ubuntu linux host:
apt install docker.io
NOTE (only if you hit any issues): Make sure that your docker engine supports images bigger than 10GB. For instructions, see here: https://stackoverflow.com/questions/37100065/resize-disk-usage-of-a-docker-container Make sure that there is TCP connectivity allowed between the containers in the default docker bridge network, (for example disable firewall).
git clone https://github.com/Juniper/contrail-dev-env
cd contrail-dev-env
sudo ./startup.sh
contrail-developer-sandbox [For running scons, unit-tests etc]
contrail-dev-env-rpm-repo [Repo server for contrail RPMs after they are build]
contrail-dev-env-registry [Registry for contrail containers after they are built]
docker attach contrail-developer-sandbox
Required first steps in the container:
cd /root/contrail-dev-env
make sync # get latest code using repo tool
make fetch_packages # pull third_party dependencies
make setup # set up docker container
make dep # install dependencies
Now you can run any commands using the source code sandbox, e.g.
cd /root/contrail
scons # ( or "scons test" etc)
Or use any of additional make
targets provided by contrail-dev-env/Makefile
:
make setup
- initial configuration of image (required to run once)make sync
- sync code incontrail
directory usingrepo
toolmake fetch_packages
- pull third_party dependencies (after code checkout)make dep
- installs all build dependenciesmake dep-<pkg_name>
- installs build dependencies for <pkg_name>make list
- lists all available rpm targetsmake rpm
- builds all RPMsmake rpm-<pkg_name>
- builds single RPM for <pkg_name>make list-containers
- lists all container targetsmake containers
- builds all containers, requires RPM packages in /root/contrail/RPMSmake container-<container_name>
- builds single container as a target, with all docker dependenciesmake clean{-containers,-repo,-rpm}
- artifacts cleanup
See https://github.com/Juniper/contrail-ansible-deployer/wiki/Contrail-with-Kolla-Ocata .
Set CONTAINER_REGISTRY
to registry:5000
to use containers built in step 5.
Note: only RedHat 7 and CentOS 7 are supported at this time!
- Clone this repository to a directory on a VM.
- Run
vm-dev-env/init.sh
(you might be asked for your password as some steps require the use of sudo). a. You can also runvm-dev-env/init.sh -n
if you don't want to clone work directory on a VM. Then you have to mount sandbox to directory namedcontrail
next tocontrail-dev-env
. - Run
make fetch_packages
to pull dependencies tocontrail/third_party
- Run
sudo ./startup.sh -b
to start required containers. - You can use the Makefile targets described above to build contrail.