Best of Jenkins2021

  1. 1
    Article
    Avatar of towardsdevTowards Dev·4y

    A practical guide into DevOps as a back-end engineer

    How to set up a digital ocean droplet, a GCP instance, or an AWS EC2 instance. Decide which cloud platform you will use then select the link for a walk-through on how to get started. Use docker-compose to build, deploy, run, update, and stop containers using simple commands.

  2. 2
    Article
    Avatar of codecentriccodecentric·5y

    Stop re-writing pipelines! Why GitHub Actions drive the future of CI/CD

    The Pipeline-as-Code pattern is implemented by most CI/CD platforms today. So what could be the next evolutionary step? Based on GitHub Actions, the article outlines why open-source Pipeline- as-Code will take your pipelines to the next level. The article is part of a blog series about GitHub Actions.

  3. 3
    Article
    Avatar of faunFaun·5y

    How to make a basic CI-CD pipeline using Jenkins?

    How to make a basic CI-CD pipeline using Jenkins? Sumyak Jain explains how. We will develop and host a basic maven web application in Java using DevOps tools like Apache Maven as a build tool, GitHub for source code management, Selenium for testing, Jenkins for Continuous Integration, and Apache Tomcat for deployment and use Jenkins plugin to monitor our pipeline.

  4. 4
    Article
    Avatar of itnextITNEXT·5y

    Jenkins Tutorial — Part 1 — Pipelines

    Jenkins is one of the most popular CI/CD platforms used to automate jobs. In this tutorial, we will talk about the Jenkins DSL language which is more readable and easy to learn. Within this DSL language, we can write Groovy scripts too. Let’s get started.

  5. 5
    Article
    Avatar of itnextITNEXT·5y

    Jenkins Tutorial — Part 8 — Triggering Pipeline

    Jenkins has various build triggering methods, cron, webhook, upstream, etc. I will explain the popular ones. All triggers should be defined in the triggers block of the pipeline. To write cron trigger use cron "MINUTE HOUR DOM MONTH DOW" syntax.