# Technical Guides

Published articles for Technical Guides.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Anatomy of a Pull Request Generator

DevFeed: [Anatomy of a Pull Request Generator](<https://devfeed.tech/articles/anatomy-of-a-pull-request-generator-17671.md>)

Original publisher: [Read original article](<https://codefresh.io/blog/anatomy-of-a-pull-request-generator/>)

Author: Shawn Sesna

Published: 2025-10-02T14:48:57Z

Content type: tutorial

Language: en

Sources: [Codefresh](<https://devfeed.tech/sources/codefresh.md>)

Topics: [argo-cd](<https://devfeed.tech/topics/argo-cd.md>), [pull-requests](<https://devfeed.tech/topics/pull-requests.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Git](<https://devfeed.tech/topics/git.md>), [bitbucket](<https://devfeed.tech/topics/bitbucket.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>)

Tags: [argo-cd](<https://devfeed.tech/tags/argo-cd.md>), [bitbucket](<https://devfeed.tech/tags/bitbucket.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [git](<https://devfeed.tech/tags/git.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [pull-request](<https://devfeed.tech/tags/pull-request.md>), [technical-guides](<https://devfeed.tech/tags/technical-guides.md>)

### AI overview

This tutorial explains Argo CD's Pull Request Generator, an ApplicationSet deployment type that monitors a Git repository for matching pull requests, deploys their manifests to ephemeral environments, and removes the deployed resources when the pull request closes. It also breaks down the manifest configuration, including polling intervals and Bitbucket Server settings.

### Source excerpt

Argo CD has built a number of Generators to support various scenarios that developers need when using Argo CD and Kubernetes. In this post, I'll be discussing the Pull Request Generator. A Pull Request Generator is an Argo CD Application Set deployment type that is configured to "watch" a Git repository for Pull Requests (PRs). [...] The post Anatomy of a Pull Request Generator appeared first on Codefresh.

## Configuring Slack Notifications with Argo Workflows

DevFeed: [Configuring Slack Notifications with Argo Workflows](<https://devfeed.tech/articles/configuring-slack-notifications-with-argo-workflow-a-learning-experience-17677.md>)

Original publisher: [Read original article](<https://codefresh.io/blog/configuring-slack-notifications-argo-workflow/>)

Author: Shawn Sesna

Published: 2025-06-24T18:06:52Z

Content type: tutorial

Language: en

Sources: [Codefresh](<https://devfeed.tech/sources/codefresh.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [CI/CD](<https://devfeed.tech/topics/cicd.md>), [Orchestration](<https://devfeed.tech/topics/orchestration.md>), [Containers](<https://devfeed.tech/topics/containers.md>), [YAML](<https://devfeed.tech/topics/yaml.md>)

Tags: [applicationset](<https://devfeed.tech/tags/applicationset.md>), [argo](<https://devfeed.tech/tags/argo.md>), [argo-cd](<https://devfeed.tech/tags/argo-cd.md>), [ci-cd](<https://devfeed.tech/tags/ci-cd.md>), [clusters](<https://devfeed.tech/tags/clusters.md>), [containers](<https://devfeed.tech/tags/containers.md>), [feature-flags](<https://devfeed.tech/tags/feature-flags.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [orchestration](<https://devfeed.tech/tags/orchestration.md>), [product-and-tools](<https://devfeed.tech/tags/product-and-tools.md>), [software-development](<https://devfeed.tech/tags/software-development.md>), [technical-guides](<https://devfeed.tech/tags/technical-guides.md>), [yaml](<https://devfeed.tech/tags/yaml.md>)

### AI overview

This tutorial introduces Argo Workflows as an open source workflow engine for orchestrating parallel jobs and CI/CD pipelines on Kubernetes. It explains workflow definitions, containers, templates, dependencies, storage volumes, and workflow state.

### Source excerpt

The acquisition of Codefresh gave me an exciting opportunity to learn new tech. Initially, I thought Argo was just Argo CD. I didn't realize that Argo consists of 4 distinct projects: A key feature of the Codefresh product is Promotion Flows, which makes heavy use of Argo Workflows. Promotion Flows add the ability to assign [...] The post Configuring Slack notifications with Argo Workflow - a learning experience appeared first on Codefresh.

## Using Argo Rollouts for Header-Based Routing in Kubernetes Canary Deployments

DevFeed: [Using Argo Rollouts for Header-Based Routing in Kubernetes Canary Deployments](<https://devfeed.tech/articles/laser-focused-kubernetes-deployments-using-argo-rollouts-and-header-based-routing-17673.md>)

Original publisher: [Read original article](<https://codefresh.io/blog/argo-rollouts-header-based-routing/>)

Author: Kostis Kapelonis

Published: 2025-06-23T13:39:25Z

Content type: tutorial

Language: en

Sources: [Codefresh](<https://devfeed.tech/sources/codefresh.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>), [Routing (disambiguation)](<https://devfeed.tech/topics/routing.md>)

Tags: [argo-rollouts](<https://devfeed.tech/tags/argo-rollouts.md>), [continuous-deployment](<https://devfeed.tech/tags/continuous-deployment.md>), [deployment-strategies](<https://devfeed.tech/tags/deployment-strategies.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [progressive-delivery](<https://devfeed.tech/tags/progressive-delivery.md>), [routing](<https://devfeed.tech/tags/routing.md>), [technical-guides](<https://devfeed.tech/tags/technical-guides.md>)

### AI overview

This guide explains how to use Argo Rollouts to control which users receive a canary deployment. It compares static routing with extra URLs and header-based routing, covering the tradeoffs between simplicity and flexibility.

### Source excerpt

A Kubernetes cluster with default configuration has access to only two deployment strategies: To get access to more advanced deployment strategies such as blue/green and canaries you need to use a dedicated Progressive Delivery controller such as Argo Rollouts. We have previously covered several basic and advanced scenarios for Argo Rollouts in our blog. Today [...] The post Laser Focused Kubernetes Deployments Using Argo Rollouts and Header Based Routing appeared first on Codefresh.