Controlling the Environments
This lesson covers the creation, retrieval and deletion of environments.
We'll cover the following...
So far, we’ve seen that Jenkins X created three environments during its installation process.
- We acquired the
development
environment that runs the tools we need for continuous delivery as well as temporary Pods used during builds. - We also acquired the
staging
environment where all the applications are promoted automatically whenever we push a change to the master branch. - Finally, we have a
production
environment that is still a mystery.
Does all that mean that we are forced to use those three environments in precisely the way ...