Live AI-Enabled DevSecOps & Cloud Engineering Bootcamp from Coach AK - Sep 2026 Schedule
Master DevSecOps & Cloud Computing with Coach AK
Engineering DevOps & Cloud Excellence Through Real-World Enterprise Mentorship. 📧 Contact Coach AK: devops.coaching@gmail.com 📱 Call / WhatsApp: +1 (469) 733-5248
Friday, August 28, 2026
Sunday, June 14, 2026
Complete AI-Enabled DevOps Learning Roadmap for 2026 | Skills Required to Become a Modern DevSecOps Engineer
🚀 AI-Enabled DevOps Engineer Roadmap for 2026
The future belongs to AI-Enabled DevOps Engineers, not AI-only Engineers. Strong DevOps fundamentals combined with AI productivity skills will create the highest demand in the job market.
Top AI and DevOps skills
- Linux knowledge and scripting - basic troubleshooting and scripting and looking at the logs
- Experience in Git, GitHub, GitLab, Bitbucket, Azure Repos or any source code management tools.
- Experience in CI tools such as Jenkins, GitHub Actions, GitLab CICD, Azure DevOps
- Experience in Code quality tool/security scanning tools - SonarQube, AquaSec Trivy, Checkov
- Experience in Infrastructure automation tools such as Terraform, AWS cloud formation
- Experience in Configuration Management tools such as Ansible, Puppet or Chef
- Experience in scripting languages such as YAML, groovy, Ruby, Python and Shell
- Experience in containers such as Docker, Kubernetes and Helm
- Experience in Monitoring tools such as Prometheus, Grafana
- Ability to troubleshoot in case builds, deployments failure.
- Any cloud knowledge and experience - AWS, Azure and Google cloud
- AI-assisted DevOps and Cloud Engineering
- AI-assisted Troubleshooting and RCA
- AI-assisted Infrastructure Automation
- AI-assisted DevSecOps
- AI-assisted Kubernetes Operations
- Understanding AI Agents, RAG and SRE Automation
Soft skills employers are looking:
These days employers are not only looking for strong technical skills but also looking "soft skills" which are essentials to become successful in IT. If you think if you are lagging on any of these skills, no worries. All these skills can be developed and improved over period of time by practicing.
- Open minded
- Willingness to learn new skills
- Communication
- Approachable
- "Get it done" attitude
- Being adaptable
Tuesday, June 9, 2026
How to integrate SonarQube with GitLab CICD Pipeline | SonarQube Integration with GitLab CICD | Automate Code Scan using SonarQube In GitLab CICD
Please find steps for integrating SonarQube with GitLab CICD

- Make sure SonarQube is up and running
- Make sure Java Project is setup in GitLab
- Create Token in SonarQube to authenticate with GitLab
- Add Sonar Token, SonarQube URL as Secrets in GitLab
- Create GitLab CICD yaml
- Add tasks for Maven build and Sonar Scan
- Verify scan report in SonarQube
The below file have three stages:

Saturday, June 6, 2026
How to Implement CICD Pipeline using GitLab Yaml | GitLab CICD Tutorials | GitLab CICD Pipeline | Build Java WAR file using GitLab CICD YAML file
Here below is the code for creating GitLab CICD yaml file for Java Web App project to automate build and deployment.
What is GitLab CICD?
GitLab CI/CD is a continuous integration and continuous deployment solution built into GitLab.

GitLab CI/CD
GitLab CI/CD is a feature of GitLab that automates:
- Building code
- Testing applications
- Scanning code
- Deploying applications
whenever developers push code into Git repositories.
What is .gitlab-ci.yml?
The .gitlab-ci.yml file is the heart of GitLab CI/CD pipelines.
It contains:
- Pipeline stages
- Jobs
- Scripts
- Variables
- Artifacts
- Deployment instructions
GitLab automatically reads this file whenever code changes are pushed into the repository. GitLab Runner uses a Docker container image to run the job.
Pre-requisites:
- Setup Java Project in GitLab
- Tomcat is setup
- Tomcat credentials configured
.gitlab-ci.yml for implementing CICD using GitLab
stages:
- build
- deploy
build_war:
stage: build
image: maven:3.8.6-eclipse-temurin-11
script:
- echo "Building WAR file using Maven"
- mvn clean install -f MyWebApp/pom.xml
- echo "Listing target directory"
- ls -la MyWebApp/target
artifacts:
paths:
- MyWebApp/target/*.war
expire_in: 1 hour
deploy_to_tomcat:
stage: deploy
image: curlimages/curl:latest
dependencies:
- build_war
script:
- echo "Deploying WAR file to Tomcat running on AWS EC2"
- |
curl -v -u ${TOMCAT_USER}:${TOMCAT_PASSWORD} \
-T MyWebApp/target/MyWebApp.war \
"http://${TOMCAT_HOST}/manager/text/deploy?path=/MyWebApp&update=true"
Sunday, May 31, 2026
🚀 Complete AI-Enabled DevSecOps Learning Roadmap for 2026 | Skills Required to Become a Modern DevSecOps Engineer
AI-Enabled DevOps Engineer Roadmap for 2026
The future belongs to AI-Enabled DevOps Engineers, not AI-only Engineers. Strong DevOps fundamentals combined with AI productivity skills will create the highest demand in the job market.
Top AI and DevOps skills
- Linux knowledge and scripting - basic troubleshooting and scripting and looking at the logs
- Experience in Git, GitHub, GitLab, Bitbucket, Azure Repos or any source code management tools.
- Experience in CI tools such as Jenkins, GitHub Actions, GitLab CICD, Azure DevOps
- Experience in Code quality tool/security scanning tools - SonarQube, AquaSec Trivy, Checkov
- Experience in Infrastructure automation tools such as Terraform, AWS cloud formation
- Experience in Configuration Management tools such as Ansible, Puppet or Chef
- Experience in scripting languages such as YAML, groovy, Ruby, Python and Shell
- Experience in containers such as Docker, Kubernetes and Helm
- Experience in Monitoring tools such as Prometheus, Grafana
- Ability to troubleshoot in case builds, deployments failure.
- Any cloud knowledge and experience - AWS, Azure and Google cloud
- AI-assisted DevOps and Cloud Engineering
- AI-assisted Troubleshooting and RCA
- AI-assisted Infrastructure Automation
- AI-assisted DevSecOps
- AI-assisted Kubernetes Operations
- Understanding AI Agents, RAG and SRE Automation
Soft skills employers are looking:
These days employers are not only looking for strong technical skills but also looking "soft skills" which are essentials to become successful in IT. If you think if you are lagging on any of these skills, no worries. All these skills can be developed and improved over period of time by practicing.
- Open minded
- Willingness to learn new skills
- Communication
- Approachable
- "Get it done" attitude
- Being adaptable
Sunday, May 24, 2026
How to Setup AquaSec Trivy Vulnerability Scanner | How to install AquaSec Trivy Scanner on Linux OS | Jenkins Pipeline For Scanning MyWebApp | DevSecOps Tutorials
What is Trivy?
- open-source security scanner tool developed by Aqua Security.
- Used for vulnerability scanning in such as
- container images
- file systems/folders
- Git repositories
- Kubernetes clusters
- misconfiguration in files such as Terraform, K8S manifest files
- Trivy helps identify security issues and misconfigurations early in the software development lifecycle.
Pre-requisites:
- Any Linux instance is up and running, in our case we will use Jenkins Ubuntu machine
How to Install Trivy scanner on Jenkins Ubuntu EC2 instance?
🚀 Live AI-Enabled DevSecOps & Cloud Engineering Bootcamp – Sep 2026
Live AI-Enabled DevSecOps & Cloud Engineering Bootcamp from Coach AK - Sep 2026 Schedule
-
Let us learn how to create and configure a Self-Hosted Agent in Azure DevOps (ADO). What is an Agent? An agent is computing infrastructure w...
-
GitHub is one of the popular git-based version control systems. GitHub is very good example for Software-as-a-service, ...
-
Please find steps for integrating SonarQube with GitHub Actions: Pre-requisites: Make sure SonarQube is up and running Make sure Java Projec...







