CD in action
Welcome to this exciting section. We are set to observe the seamless automation and efficiency of the CD pipeline that we meticulously set up in the previous sections. Before we set this well-oiled machine into motion, let’s make some vital updates to our GitHub repository containing the source code of our web application. Be careful not to make the following changes to the Helm chart’s GitHub repository:
- Replace Jenkinsfile: Start by substituting the existing Jenkinsfile in your repository with the newly updated one. This file is now equipped with stages pertinent to CD, ensuring that the entire pipeline is CD-ready.
- Add a performance test file: Proceed to create a new folder within your repository named
performance-tests
. Here, deposit theperformance-test.js
file. This script is crucial for assessing the performance of the deployed application, ensuring it operates optimally in the production environment.
With these essential files in...