OpenShift Pipelines
- Deploying Jenkins on OpenShift
- External Jenkins Integration with OpenShift
- Improving Jenkinsβ performance on Openshift
- Building applications in OpenShift
- OpenShift Deployments with Deployment Descriptor
- OpenShift Deployments with GitHub Actions
- Deployments with OpenShift HA in Multiple Datacenters
- ODO - OpenShift Command line for Developers
- All about OpenShift Pipelines
- Jenkins CICD Getting started with Groovy and Docker Containers
- Fabric8 Pipeline Library (deprecated)
- Eclipse JKube Pipeline Library (formerly known as Fabric8 Kubernetes Plugin). Kubernetes & OpenShift Plugins
- Jenkins Pipelines with OpenShift 3
- OpenShift Jenkins Pipeline (DSL) Plugin. Scripted Syntax (Groovy DSL syntax) VS Declarative Syntax
- OpenShift Pipelines (aka Tekton CI/CD Pipelines)
- Videos
- Slides
Deploying Jenkins on OpenShift
- Jenkins Docker Image for Openshift v3
- opensource.com: Running Jenkins builds in Openshift containers
- blog.openshift.com: Deploying Jenkins on OpenShift: Part 1
- cloudowski.com: Jenkins on OpenShift - how to use and customize it in a cloud-native way π
- developers.redhat.com: An easier way to create custom Jenkins containers in OpenShift 4 π Create your own custom Jenkins container image by aggregating readily available containers in a pod template.
Jenkins Container Images in OpenShift
- docs.okd.io: Jenkins in Openshift Openshift provides a container image for running Jenkins. This image provides a Jenkins server instance, which can be used to set up a basic flow for continuous testing, integration, and delivery.
- OCP 4.2 - Jenkins image
External Jenkins Integration with OpenShift
Improving Jenkinsβ performance on Openshift
- blog.openshift.com: Deploying jenkins on openshift - part 1
- blog.openshift.com: Improving jenkins performance on openshift - part 2
Building applications in OpenShift
OpenShift Pipelines with Build Config
- Dzone: 4 ways to build applications in openshift
- Dzone: OpenShift Quick Start: Build, Deployment, and Pipeline π Automation is the key to microservices success. Learn how to use the OpenShift platform to implement a continuous build and deployment platform.
- slideshare.net: OpenShift Container Platform CI/CD Build & Deploy π
OpenShift Pipelines with S2i
- developers.redhat.com - S2i
- blog.openshift.com: From zero to container deployment hero with OpenShift 3 and S2i (Video) π
- developers.redhat.com: Source versus binary S2I workflows with Red Hat OpenShift Application Runtimes
OpenShift Pipelines with S2i and Jenkins Blue Ocean. Deploying Blue Ocean on OpenShift
- OpenShift Pipelines with Jenkins Blue Ocean π
- github.com/siamaksade/jenkins-blueocean Jenkins Blue Ocean for OpenShift Jenkins S2I
OpenShift Deployments with Deployment Descriptor
OpenShift Deployments with GitHub Actions
Deployments with OpenShift HA in Multiple Datacenters
- blog.openshift.com: Deploying OpenShift Applications to Multiple Datacenters (with Jenkins)
- Using KubeFed to deploy applications
ODO - OpenShift Command line for Developers
- ODO: OpenShift Command line for Developers π OpenShift Do (Odo) is a CLI tool for developers who are writing, building, and deploying applications on OpenShift. With Odo, developers get an opinionated CLI tool that supports fast, iterative development which abstracts away Kubernetes and OpenShift concepts, thus allowing them to focus on what’s most important to them: code.
- developers.redhat.com: odo Cheat Sheet
- developers.redhat.com: Enterprise Kubernetes development with odo: The CLI tool for developers
- developers.redhat.com: Kubernetes integration and more in odo 2.0
- piotrminkowski.com: Java Development on OpenShift with odo
- developers.redhat.com: Developing your own custom devfiles for odo 2.0
All about OpenShift Pipelines
Jenkins CICD Getting started with Groovy and Docker Containers
- medium: Jenkins CICD Getting started with Groovy and Docker Containers β Part 1
- medium: Jenkins CICD Getting started with Groovy and Docker Containers β Part 2
- openshift.com: Using OpenShift Pipelines to Automate Red Hat Advanced Cluster Security for Kubernetes
Fabric8 Pipeline Library (deprecated)
- Fabric8 has been available as a Java client for Kubernetes since 2015, and today is one of the most popular client libraries for Kubernetes (the most popular is client-go, which is the client library for the Go programming language on Kubernetes). In recent years, fabric8 has evolved from a Java client for the Kubernetes REST API to a full-fledged alternative to the kubectl command-line tool for Java-based development.
- developers.redhat.com: Getting started with the fabric8 Kubernetes Java client
- CI/CD with fabric8
- Fabric8 Pipeline Library
- medium - fabric8, please check out jenkins X instead
- github - fabric8, maven plugin
Eclipse JKube Pipeline Library (formerly known as Fabric8 Kubernetes Plugin). Kubernetes & OpenShift Plugins
- Eclipse JKube π Cloud-Native Java Applications without a hassle. Eclipse JKube is a collection of Maven and Gradle plugins, and libraries that are used for building container images using Docker, JIB or S2I build strategies. Eclipse JKube generates and deploys Kubernetes/OpenShift manifests at compile time too. It brings your Java applications on to Kubernetes and OpenShift by leveraging the tasks required to make your application cloud-native. Eclipse JKube also provides a set of tools such as watch, debug, log, etc. to improve your developer experience.
- GitHub: Eclipse JKube
Jenkins Pipelines with OpenShift 3
OpenShift Jenkins Pipeline (DSL) Plugin. Scripted Syntax (Groovy DSL syntax) VS Declarative Syntax
- Building Declarative Pipelines with OpenShift DSL Plugin ππ:
- Jenkins Pipeline Syntax: Scripted Syntax (Groovy DSL syntax) & Declarative Syntax π:
- Version 2.5 of the “Pipeline plugin” released in 2016/05/16 introduces support for Declarative Pipeline syntax.
- Declarative Pipeline is a relatively recent addition to Jenkins Pipeline which presents a more simplified and opinionated syntax on top of the Pipeline sub-systems.
- Jenkinsfiles have only become an integral part of Jenkins since version 2 but they have quickly become the de-facto standard for building continuous delivery pipelines with Jenkins. Jenkinsfile allows defining pipelines as code using a Groovy DSL syntax and checking it into source version control which allows you to track, review, audit, and manage the lifecycle of changes to the continuous delivery pipelines the same way that you manage the source code of your application.
- Although the Groovy DSL syntax which is referred to as the scripted syntax is the more well-known and established syntax for building Jenkins pipelines and was the default when Jenkins 2 was released, support for a newer declarative syntax is also added since Jenkins 2.5 in order to offer a simplified way for controlling all aspects of the pipeline. Although the scripted and declarative syntax provides two ways to define your pipeline, they both translate to the same execution blocks in Jenkins and achieve the same result.
- The declarative syntax in its simplest form is composed of an agent which defines the Jenkins slave to be used for executing the pipeline and a number of stages and each stage with a number of steps to be performed.
- Jenkins Pipeline Syntax: Scripted Syntax (Groovy DSL syntax) & Declarative Syntax π:
- Dzone - Continuous Delivery with OpenShift and Jenkins: A/B Testing π
- docs.openshift.com: OpenShift 3.11 Pipeline Builds with OpenShift Jenkins Image and OpenShift DSL
Red Hat Communities of Practice
- OpenShift Container Pipelines Samples π
- OpenShift Pipeline Library π A repository of Jenkins pipeline files we can reference from elsewhere
Jenkins Pipelines in OpenShift 4
- developers.redhat.com - Get started with Jenkins CI/CD in Red Hat OpenShift 4
- Simply Explained: OpenShift and Jenkins Pipelines
OpenShift Pipelines (aka Tekton CI/CD Pipelines)
- openshift.com: Cloud-Native CI/CD with OpenShift Pipelines based on Tekton
- github: OpenShift Pipelines Tutorial π
- github: OpenShift Pipelines Node.js Tutorial
- developers.redhat.com: Modern web applications on OpenShift, Part 4: Openshift Pipelines
- openshift.com: OpenShift Pipelines Advanced Triggers Part 1 - Triggering Different Project Builds in the Same Repository