if you prefer IRC, check out irc.gitter.im
Evergreen is an automatically updating rolling distribution system for Jenkins It consists of server-side, and client-side components to support a Chrome-like upgrade experience for Jenkins users.
Jenkins Evergreen provides the end-user with a pre-assembled collection of legos that can be immediately used to implement CI [1] and CD [2] workloads. At the same time, this focus on end-users success in these well-defined scenarios will help the Jenkins project develop new features, and fix bugs, more rapidly than before.
Evergreen is currently in alpha and is not recommended for production just yet.
The easiest way to get started with Jenkins Evergreen is to use the Docker
image which has already been auto-configured for running workloads on Docker
itself. When jenkins/evergreen:docker-cloud
is launched, it will
automatically download the latest version of Jenkins and the most essential
plugins and automatically configure some basic authentication, Docker settings
and Jenkins Pipeline.
In the example below, Jenkins Evergreen will be made available on port 8080
and persist its data in $PWD/jenkins-home
, allowing the container to be
restarted if necessary.
docker volume create jenkins-evergreen-data && \
docker pull jenkins/evergreen:docker-cloud && \
docker run --name evergreen \
--restart=always \
-ti \
-p 8080:80 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v jenkins-evergreen-data:/evergreen/data/ \
-e LOG_LEVEL=debug \
jenkins/evergreen:docker-cloud
Jenkins Evergreen is currently available for early adopters. Please see jenkins.io/projects/evergreen for more documentation and instructions on how to use it.
Currently in-progress
The second milestone for Jenkins Evergreen is much more focused on the end-user experience while exercising the continuous delivery process built out in Milestone One.
Evergreen and Jenkins Evergreen are both captured in the following design documents:
JEP | Title |
---|---|
JEP-300 |
|
JEP-301 |
|
JEP-302 |
|
JEP-303 |
|
JEP-304 |
|
JEP-305 |
|
JEP-306 |
|
JEP-307 |
|
JEP-308 |
|
JEP-309 |
|
JEP-310 |
The model applied with the Evergreen distribution system is one similar to "deploying" Software-as-a-Service, without having a centralized "production" environment. When documentation refers to a "Deployment", that entails a new "Upgrade" of Jenkins Evergreen being made available in the Evergreen hosted service layer, and the backend orchestration necessary to ping connected Instances to initiate their local upgrade process.
A Deployment is then considered successful when all connected Jenkins Evergreen Instances are running that new version of Jenkins Evergreen.
Inspired by the Openstack project [3] Jenkins Evergreen follows "The Four Opens":
We do not produce “open core” software.
We are committed to creating truly open source software that is usable and scalable. Truly open source software is not feature or performance limited and is not crippled.
We use the MIT license.
We are committed to an open design process. The development cycle requires active collaboration to gather requirements and write specifications for upcoming releases. Those events, which are open to anyone, include users, developers, and upstream projects. We gather requirements, define priorities and flesh out technical design to guide development for the next development cycle.
The community controls the design process. You can help make this software meet your needs.
We maintain a publicly available source code repository through the entire development process. We do public code reviews. We have public roadmaps. This makes participation simpler, allows users to follow the development process and participate in QA at an early stage.
See the related document.