Tag archives for DevOps
Docker Desktop Stuck at “Kubernetes is Starting”
I came across a weird issue in Docker Desktop for windows where Kubernetes was not coming up and it stuck in "Kubernetes is Starting". Please follow below steps to resolve…
How to update autoscale configuration in Kubernetes?
What is autoscale in Kubernetes? Let's understand autoscaling with an example. If you have a web application and during specific time you got lot's of viewer and the rest of…
Docker Frequently Asked Questions and Answers
1) How to stop all docker containers?docker kill $(docker ps -q) 2) How to stop docker containers and remove them?docker rm $(docker ps -a -q) 3) How to remove all…
denied: requested access to the resource is denied
denied: requested access to the resource is denied If you face this error while pushing image to remote docker registry then you can use below solution to fix the issue.…
How to concatenate string variables in Bash
Here are few preferred ways to concatenate string variables in bash script Concatenate string variables in Bash the variable one after another in echo #!/bin/bash var1="Techieroop" var2="${var1} Tutorial" echo "${var2}"…
Shell Script Questions and Answers
Please find below list of Shell Script Questions and Answers. Shell Script Questions and Answers 1. Given two integers, X and Y , find their sum, difference, product, and quotient. Constraints X…
Jenkins Questions and Answers
Jenkins Questions and Answers Here are the list of Jenkins Questions. What is the Jenkins ? How you will use Jenkins to automate CI/CD ?How to configure your Github or…
Types of Jobs in Jenkins
Types of Jobs in Jenkins We can create below types of jobs in Jenkins. Freestyle Project PipelineMulticonfiguration ProjectsFolder GitHub organization Mutlibranch Pipeline
Popular Use Cases of Jenkins
Jenkins is one of the most popular Continuous Integration (CI) and Continuous Delivery (CD) tool. Jenkins is an Open Source build written in Java. Jenkins can be used in automation…
Why we need Jenkins?
Jenkins is one of the most popular Continuous Integration (CI) and Continuous Delivery (CD) tool. Jenkins is an Open Source build written in Java. Jenkins can be used in automation…