This article is part of the Continuous Integration, Delivery and Deployment series.
We’ll continue where we left in Introduction to concepts and tools. The goal of this article is to set up a Jenkins server locally through automated and repeatable process with all the artifacts stored in the GIT repository. This will require tools like VirtualBox and Vagrant. It will also require registration to Docker. Unlike the previous article that provided only general information, in this one we’ll have to get our hands dirty and follow the examples.
What do we need in order to have a Jenkins server up and running locally? We need a virtual machine or available server, operating system installed and configured, Jenkins installed and configured. Since everything we do needs to be reliable and repeatable, we’ll also need a Version Control System. Examples in this article will use GitHub as VCS.
Following software is required by examples in this article: VirtualBox, Vagrant, Docker, GitHub account and GIT client (we’re using TortoiseGIT but any other should do). Please consult above mentioned sites for installation instructions.
All the code from this article can be found in the TechnologyConversationsCD GitHub repository.
Vagrant: Virtual Machine with Operating System
We’ll create an VirtualBox machine. The process itself will be done with Vagrant.
Vagrant is a tool for building environments. Even though it can be used to build complete environment, we’ll use it only to create virtual machine with Ubuntu server. The process is very simple. Create a file called Vagrantfile. Contents of that file should be:
VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "ubuntu/trusty64" end
Full source code can be found in the Vagrantfile.
The key line is the one starting with config.*. It specifies which server we’d like to install. Easiest is to use one of the already created boxes from the Vagrant Cloud Service. For the purpose of this article, I choose a standard Ubuntu 12.04 LTS 64-bit box called “ubuntu/trusty64”.
Next, we should bring up the virtual machine. To do that, following should be executed from the command prompt while in the same directory where Vagrantfile is located:
$ vagrant up
It takes some time to download the box when run from the first time. Once done, creating virtual machines will be almost instantaneous. From now on we can login to our new Ubuntu virtual machine. Default IP is 127.0.0.1:2222 with username and password vagrant/vagrant. Fire up your favorite SSH client (Putty is always a good choice) and play around with your new server.
Once done we’ll proceed with the setup of Docker.
Docker: Jenkins server
Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere.
Let’s create an Ubuntu container with Jenkins. To do that we’ll have to create Dockerfile with following content:
FROM ubuntu:12.04 MAINTAINER Viktor Farcic, "viktor@farcic.com" RUN echo deb http://archive.ubuntu.com/ubuntu precise universe >> /etc/apt/sources.list RUN apt-get update && apt-get clean RUN apt-get install -q -y openjdk-7-jre-headless && apt-get clean ADD http://mirrors.jenkins-ci.org/war/1.560/jenkins.war /opt/jenkins.war RUN ln -sf /jenkins /root/.jenkins ENTRYPOINT ["java", "-jar", "/opt/jenkins.war"] EXPOSE 8080 VOLUME ["/jenkins"] CMD [""]
Full source code can be found in the Dockerfile.
Docker uses its own Domain-Specific Language (DSL) that is pretty straight forward. I’ll go briefly through instructions used in the above file. For detailed information, please consult the Docker documentation.
- FROM: The FROM instruction sets the Base Image for subsequent instructions. In our case, base image is the Ubuntu that can be found in Docker public repository. We’ll build on top of this base and setup a Jenkins server.
- MAINTAINER: Name and email of the author. Purpose is purely informational.
- RUN: The RUN instruction will execute any command in a new layer on top of the current image and commit the results. It has several forms. The one we’re using is simply executing shell commands as they are written.
- ADD: The ADD instruction will copy new files and add them to the container’s filesystem.
- ENTRYPOINT: An ENTRYPOINT helps you to configure a container that you can run as an executable. That is, when you specify an ENTRYPOINT, then the whole container runs as if it was just that executable. In our case, we’re telling Docker to run Jenkins WAR file.
- EXPOSE: The EXPOSE instructions inform Docker that the container will listen on the specified network ports at runtime. Since Jenkins is using port 8080, we need to expose it to processes running outside the container.
Next step is to push the file we just created to our GitHub repo and configure Docker Hub to build the container every time we change contents of that file. The rest of the article assumes that the reader is registered with Docker Hub.
Go to your Docker profile, select “Authorized Services” followed with “Go to application”. By clicking “+ Add” > “Add trusted (source) build” we can add connection from Docker to our GitHub repo. Please follow the instructions on the screen for the rest of steps.
Build of our new container can be followed from the build status Docker page. Once done (Active status), newly created container is ready for use. I named my container repo vfarcic/cd_jenkins. It is set to be publicly available so that anyone can reuse it. The rest of the article will use that Docker container. If you followed the instructions and created your own, please change vfarcic/cd_jenkins to the name you used.
At this moment we have a virtual machine created with VirtualBox and Vagrant. That VM has only Ubuntu OS installed. On the other hand, we created a docker container with Jenkins server. That container can be used on almost any machine where we need it. It can be a physical server, virtual machine, laptop, etc.
Virtual Machine with the Jenkins server
Next step is to use Ubuntu VM and Jenkins together. In order to do that we should go back to our Vagrantfile and specify that we want our container to be set and run every time we start the VM. Vagrant supports different provisioners.
Provisioners in Vagrant allow you to automatically install software, alter configurations, and more on the machine as part of the vagrant up process. Most basic provisioner are Shell scripts. For simple projects, they work fine. However, Shell scripts become cumbersome very quickly. For that purpose Vagrant supports Ansible, CFEngine, Chef, Puppet, Salt and Docker. As you probably guessed, we’ll proceed using Docker. I encourage you to explore the rest as well.
Modified Vagrantfile looks like following:
VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "ubuntu/trusty64" config.vm.provision "docker" do |d| d.run "vfarcic/cd_jenkins", args: "-d -p 0.0.0.0:49153:8080" end config.vm.network :forwarded_port, host: 4567, guest: 49153 end
We added two new instructions. First one is provision. It tells Vagrant to use docker provisioner, run the container that we just created (vfarcic/cd_jenkins) and supply it with -p argument specifying that all container communication on the Jenkins port 8080 should be redirected to 46153.
Now we have Jenkins up and running on the port 46153. To make that port visible outside the Vagrant, we need to forward that port again using the network instruction.
To apply changes we just made to the already running VM, run following:
vagrant reload --provision
With reload we’re restaring the virtual machine. Provision tells vagrant to enable provisioning (in this case with Docker). Prior to execution of Docker instructions, Vagrant will install Docker if it does not exist (as it’s the case with our Ubuntu server).
This is the big moment! Open http://localhost:4567 in your favorite browser and start using the newly created Jenkins server.
Summary
Even though the whole process might look complicated at the first glance, with a bit of practice it is very easy and intuitive. As the result, we have a virtual machine that can be easily created, destroyed, multiplied, distributed, etc (see Vagrant documentation for more info). That virtual machine comes with Docker container running Jenkins. Docker does not depend on Vagrant and the same container can be put on any other machine. It is a common practice to use Vagrant as a tool to create development machines used locally. Once we’re done with the machine it can be suspended (and later resumed) or destroyed (and later recreated). In some cases Vagrant is used in production environment as well. However, it is more optimal to use only Docker without the overhead that VM has. One server can run multiple Docker containers without the need for separate VMs with separate operating systems.
We stored two small files in our GitHub repository (Vagrantfile and Dockerfile). With them we can recreate exactly the same process as many times as needed. More importantly, having editable text files will allow us to easily build on top of this article and extend our solution.
Next articles will start the journey of the CI flow. We’ll pull the code from our repository, run static code analysis, build it, run different kinds of tests, etc. It will be a fun ride and Docker will be one of our key tools.
What about Travis and other solutions?
In the previous article I promised that we’ll work with both Jenkins and Travis and yet I did not even mention the latter. That’s because we’ll use Travis cloud server that is already set and all it requires is registration. The goal of this series is to show how to set Continuous Integration (and later on Continuous Deployment and Delivery) servers and flows. Depending on your needs, you might want to set it up by yourself (like we just did with Jenkins) or to use an already set cloud solution. We’ll continue using Jenkins as an example of the locally set server and Travis as one of the many cloud based solutions. That does not mean that there is no cloud based Jenkins solution nor that Travis cannot be installed locally. We’ll explore those options as well.
Since the previous article was published, I received suggestions for several alternative cloud based CI/CD solutions. Starting from the next article, I’ll increase our stack to few other cloud based solutions besides Travis.
Static Analysis article has been published. Please check it out and start working on your CI/CD flow.
The DevOps 2.0 Toolkit
If you liked this article, you might be interested in The DevOps 2.0 Toolkit: Automating the Continuous Deployment Pipeline with Containerized Microservices book.
This book is about different techniques that help us architect software in a better and more efficient way with microservices packed as immutable containers, tested and deployed continuously to servers that are automatically provisioned with configuration management tools. It’s about fast, reliable and continuous deployments with zero-downtime and ability to roll-back. It’s about scaling to any number of servers, design of self-healing systems capable of recuperation from both hardware and software failures and about centralized logging and monitoring of the cluster.
In other words, this book envelops the whole microservices development and deployment lifecycle using some of the latest and greatest practices and tools. We’ll use Docker, Kubernetes, Ansible, Ubuntu, Docker Swarm and Docker Compose, Consul, etcd, Registrator, confd, Jenkins, and so on. We’ll go through many practices and, even more, tools.
can’t wait for the next article 🙂
I’m quite curious how you plan to deal with data persistence (jenkins jobs definition + already ran jobs stuff) inside docker environment
Pingback: Links & reads for 2014 Week 19 | Martin's Weekly Curations
Alas, can’t find vfarcic/cd_jenkins on GitHub…
GitHub repo is https://github.com/vfarcic/TechnologyConversationsCD. vfarcic/cd_jenkins is a reference to the Docker container. You can find it in https://index.docker.io/u/vfarcic/cd_jenkins/.
Reblogged this on Agile Mobile Developer.
Thanks for you greate article. I have some questions: Is jenkins inside docker container and docker container inside Vagrant vm? If it is true, when vagrant vm up, how the docker run from Dockerfile in git repo? is there some articles to ref?
“Next step is to push the file we just created to our GitHub repo and configure Docker to build the container every time we change contents of that file. The rest of the article assumes that the reader is registered with Docker.”
Is there some resources to refer?? thanks.
You’re right. I made a mistake by saying Docker instead “Docker Hub” or hub.docker.com. Once you’re logged in to Docker Hub, you’ll see the “Add Repository” button and the rest should be easy. You can contact me on email (you’ll find it in the “About” section) if you have problems.
Hi Viktor,
Thanks for the tuto. I love this series. However, I must confess that I’ve been stuck on this first post for several days.
The official release of Vagrant had a deprecated way to apt-get update for docker. Therefore, I had to install vagrant directly from source (following the official github repo’s doc).
After that, I was fighting with many issues related to the Docker provisioning. It seem that
hashicorp/precise64
is not compatible with docker anymore. I spent several days to make them work together without luck. Eventually, I usedubuntu/trusty64
and the magic worked directly. I know it might need extra adjustement for the other posts, but it was otherwise impossible to run docker.I know how quick such tutorials on recent tools can quickly been deprecated. It’s a shame for everyone : the blogger who spent time on writing such a long and pedagogical intro, the reader who struggles with deprecated code etc.
Keep on writting such things,
Cheers
Thank you for noticing and commenting this.
Some time ago (after this article has been written) Vagrant changed the way they manage boxes. I had to change quite a few Vagrantfile files. I wrote this article quite a long time ago and I missed to update it. The change HashiCorp made to Vagrant repositories was very frustrating and is probably the only complaint I have against them. Other than that, I’m a huge fan of their products. Make sure to read my article about (among other things) Consul (also from HashiCorp). It’s a really great product. You can find it in https://technologyconversations.com/2015/07/02/scaling-to-infinity-with-docker-swarm-docker-compose-and-consul-part-14-a-taste-of-what-is-to-come/ .
Anyways, thanks I lot. I updated the article and the code.
Should these files (Dockerfile and Vagrantfile) be on the host or the guest vm?
Thank you!
Vagrantfile must the on the host since it is used to create a guest VM. Dockerfile with Jenkins should be built in the same place where the container will be run (in order words VM). Actually, since this article was published, Docker made an official Jenkins container and you should probably use that one.
Thank you! Vagrant seems to have trouble finding my Docker container. I will give this a try.
Hi, i like your article. One thing I am not clear is what is the reason you setup vagrabt and docker with jenkins locally for continues delivery and continues deployment? Is it for demo purpose only? Thanks
Indeed, Vagrant is used only for demo purposes. I tend to write a lot of hands-on articles and Vagrant is an easy way to make sure that everyone trying to follow an article will have the same environment.
Yap. I got the answer in your book. We should have dedicate servers and run docker containers on top of them in the “real world” project. Thanks