SRE Assignment – Day2

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now What is Docker volume and how to work with it? Docker volumes are file systems mounted on Docker containers to preserve data generated by the running container. The volumes are stored on the host, independent of the container life cycle. This allows users to back up data and share file systems between containers easily.

Read more

Write down steps to add new linux node of Jenkins?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Install JAVA and necessary packages to the node Create a user on the agent to be used by Jenkins Generate an ssh key. … Add the public key to the authorized_keys file of the Jenkins user on the node. Add the agent node in Jenkin UI. Go to Manage Jenkins, then Manage Nodes, then

Read more

What is continuous integration?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Continuous integration is a type of DevOps practice where all the steps involved in the software release and development are integrated and automated with the help of tools which perform those actions. You can integrate Git, Mavne, Ant, Java, Kubernetes and so many tools in a single flow to automate the software release and

Read more

Define Git workflow and list down all the git workflow option.

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now A Git workflow is a recipe or recommendation for how to use Git to accomplish work in a consistent and productive manner. When you have a large team of developers and DevOps personal to work on end to end delivery of the software, there are multiple people involved in the flow. Each individual will

Read more

List down top 20 Jenkins plugins

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Jenkins supports thousands of Plugins to integrate and work with, below are the few top rated plugins: Mailer Credentials SSH Credentials SCM API Struct JUnit Pipeline:Step API Pipeline: API Matrix Project Display URL API Pipeline: SCM Step Git Client Git Pipeline: job Command Agent launcher Pipeline: Groovy LDAP Pipeline: Multibranch Pipeline: basic Pipeline: stage

Read more

Git is not a file versioning tool. Its file system versioning tool. How come?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now File system versioning is a way to store the copies of files at various point of time. Due to this we can have all the revised versions of the files available all the time in case someone wants to go back to that specific version. This is sometimes called the revision control as all

Read more