Controlling the Environments
Explore how to control environments in Jenkins X within a Kubernetes setup. Learn to create, modify, and remove environments, and understand promotion policies and GitOps-based workflows to manage continuous delivery effectively.
We'll cover the following...
We'll cover the following...
So far, we’ve seen that Jenkins X created three environments during its installation process.
- We acquired the
developmentenvironment that runs the tools we need for continuous delivery as well as temporary Pods used during builds. - We also acquired the
stagingenvironment where all the applications are promoted automatically whenever we push a change to the master branch. - Finally, we have a
productionenvironment that is still a mystery.
Does all that mean that we are forced to use those three environments in precisely the way ...