CtrlK
BlogDocsLog inGet started
Tessl Logo

nic-ci-pipelines

CI/CD pipeline structure, GitHub Actions workflows, reusable workflow patterns, and matrix builds for NIC. Use when working on CI workflows, debugging build failures, adding new workflow steps, modifying build matrices, or understanding the release pipeline.

62

Quality

73%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./.github/skills/nic-ci-pipelines/SKILL.md
SKILL.md
Quality
Evals
Security

NIC CI/CD Pipelines

Repository Split -- read this first

Workflow files are shared between two repositories, and every job is gated on github.repository. The same file behaves differently depending on which repo runs it.

RepositoryOwnsGate string
nginx/kubernetes-ingress-internalRelease image and binary builds. Builds all OSS/Plus/NAP variants, stages them plus the Helm chart in the internal registry, signs binaries, uploads tarballs to Azuregithub.repository == 'nginx/kubernetes-ingress-internal'
nginx/kubernetes-ingress (public)Publishing only. Pulls prepped images from the internal staging registry and pushes them to every public registry, publishes the Helm chart, certifies UBI images, opens the operator PR, tags and publishes the GitHub releasegithub.repository == 'nginx/kubernetes-ingress'

Consequences:

  • release-prep.yml / release-prep-lts.yml are internal-repo only. They are the only workflows that build release images. Dispatching them on the public repo is a no-op -- every job skips.
  • release-publish.yml / release-publish-lts.yml are public-repo only. They never run docker build; oss-release.yml and plus-release.yml copy image manifests with skopeo from source_registry (default docker-mgmt-test.nginx.com) to the public targets.
  • The public repo still builds images for PR/CI testing (ci.yml -> build-artifacts.yml) and again on merge (image-promotion.yml calls build-artifacts.yml with force: true before tagging edge/stable). Both push to the GCR dev registry -- they are test artifacts, not release artifacts.
  • A publish failure is retryable on its own -- nothing needs rebuilding because the images already exist in the staging registry.
internal repo                        public repo
   -------------                        -----------
   release-prep.yml                     release-publish.yml
     build-artifacts.yml                  oss-release.yml   (skopeo copy)
     push-prep-images  --> docker-mgmt-test.nginx.com --> GCR / Docker Hub / ECR Public / Quay / GHCR / NGINX Registry
     stage-helm-chart  --> oci://docker-mgmt-test...  --> publish-helm.yml (Helm repo + GHCR)
     binaries (SBOM, Cosign)                            certify-openshift-images (Pyxis)
     azure-upload      --> Azure blob                   operator (dispatch nginx-ingress-helm-operator/sync-chart.yml)
                                                        release-gate -> tag -> release-assets -> github-release

Workflow Architecture

The CI system uses GitHub Actions with extensive reusable workflow composition.

ci.yml (main CI orchestrator)                          [public repo]
  -> checks (format, lint, codegen, CRDs, chart version)
  -> verify-codegen (go mod tidy, make update-crds, make update-codegen, make telemetry-schema -- all must produce no diff)
  -> unit-tests, staticcheck, govulncheck
  -> build-artifacts.yml (reusable)   <- CI/test images only, pushed to GCR dev registry
       -> build-oss.yml (per-variant, matrix)
       -> build-plus.yml (per-variant, matrix)  <- also used for NAP variants
  -> package-tests, helm-tests
  -> setup-smoke.yml (reusable)
  -> smoke / e2e tests

image-promotion.yml (post-merge)                       [public repo]
  -> build-artifacts.yml (force: true)  <- rebuilds test images before promoting
  -> tags images edge/stable
  -> Trivy + DockerScout security scans
  -> publishes edge Helm charts to GHCR
  -> updates GitHub Release draft notes

release-prep.yml (dispatchable Stage 1: Creation)      [INTERNAL repo only]
  -> build-artifacts.yml (reusable)   <- the only release image build
  -> push-prep-images -> stages images in docker-mgmt-test.nginx.com
  -> stage-helm-chart -> stages Helm chart in oci://docker-mgmt-test.nginx.com/nginx-ic/helm
  -> binaries -> generates SBOM (Syft), signs (Cosign), creates tarballs
  -> azure-upload -> uploads signed tarballs to Azure blob storage

release-publish.yml (dispatchable Stage 2: Publish)    [PUBLIC repo only -- no builds]
  -> oss-release.yml (skopeo copy from source_registry: docker-mgmt-test.nginx.com)
  -> plus-release.yml (skopeo copy from source_registry: docker-mgmt-test.nginx.com)
  -> publish-helm.yml (publishes Helm chart to Helm repo & GHCR)
  -> certify-openshift-images (certifies UBI images on OpenShift / Pyxis)
  -> operator -> dispatches nginx-ingress-helm-operator/sync-chart.yml to raise the operator PR
  -> release-gate -> verifies all artifact publications succeed
  -> tag -> creates and pushes the vX.Y.Z git tag
  -> release-assets -> downloads tarballs from Azure and uploads to GitHub release draft
  -> github-release -> closes milestone and publishes the GitHub release draft

Two-Stage Release Architecture

Release pipelines are split into two independently dispatchable stages that run in different repositories:

  1. Stage 1 (Prep / Creation) (release-prep.yml / release-prep-lts.yml) -- runs in nginx/kubernetes-ingress-internal:
    • Builds binaries and container images (the only place release images are built)
    • Stages container images and Helm charts in the internal test registry (docker-mgmt-test.nginx.com)
    • Generates Syft SBOMs, signs artifacts with Cosign, and uploads release tarballs to Azure blob storage
    • Does not create git tags, publish public images, or publish the GitHub release
  2. Stage 2 (Publish) (release-publish.yml / release-publish-lts.yml) -- runs in nginx/kubernetes-ingress (public):
    • Copies prepped images from docker-mgmt-test.nginx.com to public registries (GCR, Docker Hub, ECR Public, Quay, GHCR, NGINX Registry) plus the marketplace registries (GCR Marketplace, ECR Marketplace, Azure Marketplace) for Plus
    • Publishes public Helm charts and certifies UBI images on OpenShift
    • Dispatches sync-chart.yml in nginx/nginx-ingress-helm-operator to raise the operator PR (requires a non-empty operator_version input, otherwise the job skips)
    • Verifies all prerequisites via release-gate
    • Creates and pushes the release git tag (vX.Y.Z or <lts_version>)
    • Downloads signed binaries from Azure blob storage and attaches them to the GitHub release draft
    • Closes the release milestone and publishes the GitHub release

Because the stages are decoupled and live in separate repos, a transient failure in publishing or external registry sync can be retried directly via release-publish.yml without rebuilding any images or binaries.


Key Workflows

Core CI & Testing

WorkflowTriggerPurpose
ci.ymlPR to main/release-*, merge_group, workflow_dispatchMain CI orchestrator: checks + build + test. Images built here are test images pushed to the GCR dev registry
lint-format.ymlPR to main/release-*, merge_groupFormat & lint checks (gofumpt, goimports, golangci-lint, actionlint, markdownlint, yamllint, workflow gating validation)
regression.ymlDaily cron (03:00 UTC), manual dispatchMulti-K8s-version regression matrix tests
single-image-regression.ymlManual dispatchRuns Python e2e tests on a single image variant and K8s version
build-base-images.ymlWeekday cron (04:30 UTC), manual, workflow_callRebuilds all base images (alpine, debian, ubi)
build-ubi-dependency.ymlPush to main touching build/dependencies/Dockerfile.ubi10, manualBuilds the UBI dependency image published to ghcr.io/nginx/dependencies/nginx-ubi
image-promotion.ymlPush to main/release-*, workflow_callRebuilds images via build-artifacts.yml (force: true), tags edge/stable, runs security scans, publishes GHCR edge chart

Release Workflows

WorkflowRepoTriggerPurpose
release-prep.ymlinternalManual dispatchStage 1: build artifacts, stage images and Helm chart in test registry (docker-mgmt-test.nginx.com), sign binaries, upload tarballs to Azure blob storage
release-publish.ymlpublicManual dispatchStage 2: copy staged images to public registries, publish Helm chart, certify UBI images, dispatch operator sync PR, create git tag, upload release assets, close milestone, publish GitHub release
release-prep-lts.ymlinternalManual dispatchLTS Stage 1: build LTS Plus images & binaries, stage in test registry, sign binaries, upload tarballs to Azure blob storage
release-publish-lts.ymlpublicManual dispatchLTS Stage 2: copy staged LTS Plus images to public registries, publish LTS Helm chart (nginx-ingress-lts), create git tag, attach release assets, close milestone, publish GitHub release
oss-release.ymlpublicManual dispatch, workflow_callCopies OSS images from staging registry to public registries via skopeo (called by release-publish.yml)
plus-release.ymlpublicManual dispatch, workflow_callCopies Plus/NAP images from staging registry to GCR, NGINX Registry and the GCR/ECR/Azure marketplaces via skopeo (called by release-publish.yml)
plus-release-lts.ymlpublicManual dispatch, workflow_callCopies LTS Plus images from staging registry to GCR and NGINX Registry (called by release-publish-lts.yml and update-docker-images.yml)
publish-helm.ymlbothManual dispatch, workflow_callPackages and publishes Helm charts to OCI registries (GHCR, docker-mgmt-test) or the public Helm repo
create-release-branch.ymlpublicManual dispatchCreates a new release-X.Y branch and bumps versions
release-pr.ymlpublicManual dispatchAutomates creation of release PRs for version updates and changelogs
version-bump.ymlpublicManual dispatchBumps IC_VERSION and HELM_CHART_VERSION across the repository

Reusable Build Workflows (called via workflow_call)

WorkflowPurpose
build-artifacts.ymlOrchestrates GoReleaser binary builds + multi-variant image build matrix
build-oss.ymlBuilds a single OSS image variant
build-plus.ymlBuilds a single Plus/NAP image variant (maps pkg-src-repo, pkg-src-waf, pkg-src-dos to docker build args)
build-single-image.ymlBuilds a single image variant on demand (manual dispatch)
build-test-image.ymlBuilds Python e2e test image (kic-test-image)
setup-smoke.ymlSets up Kind cluster and runs smoke tests
patch-image.ymlOS-level security patches on existing images
retag-images.ymlRe-tags images in GCR Dev Registry

Security, Compliance & Automation

WorkflowTriggerPurpose
codeql-analysis.ymlPush, PR, merge_groupGitHub CodeQL security analysis
scorecards.ymlWeekly cron (Sun 20:43 UTC), push to mainOpenSSF Scorecards security scanning
dependency-review.ymlPR to main/release-*, merge_groupGitHub Dependency Review for PRs
certify-ubi-image.ymlManual dispatch, calledRed Hat UBI certification for OpenShift (Pyxis)
f5-cla.ymlPR target, issue commentCLA Assistant check for PRs
external-pr.ymlIssue commentTriggers CI for external contributor PRs after review
cherry-pick.ymlIssue comment (/cherry-pick)Automated cherry-picking of PRs to release branches
renovate-build.ymlPR (opened, synchronize)CI validation for Renovate dependency updates
update-release-draft.ymlManual dispatch, pushAutomatically updates GitHub Release draft release notes from PRs
labeler.ymlpull_request_targetApplies PR labels from .github/labeler.yml config
issues.yamlIssue openedPosts the triage acknowledgement comment

Maintenance & Repository Hygiene

WorkflowTriggerPurpose
update-docker-images.ymlWeekly cron (Sun 01:00 UTC), manualRebuilds / updates Docker images with latest base packages
update-docker-sha.ymlManual dispatchUpdates pinned base image digests in Dockerfiles
dockerhub-description.ymlPush to mainUpdates description and README on Docker Hub
cache-update.ymlManual dispatchRefreshes Go binary and image build caches
pull-nap-images.ymlManual dispatchPulls/syncs NAP images from internal registry
stale.ymlDaily cron (01:30 UTC)Closes stale issues and PRs

CI Patterns

Matrix Builds

Image variants and test configurations are defined in JSON under .github/data/:

  • matrix-images-oss.json: debian, alpine, ubi (amd64 + arm64)
  • matrix-images-plus.json: debian-plus, alpine-plus, alpine-plus-fips, ubi-10-plus
  • matrix-images-plus-lts.json: LTS Plus image definitions
  • matrix-images-nap.json: WAF v4/v5, DoS, UBI 10 (amd64 only). Every NAP image appears twice -- the unsuffixed entry pins nginx-agent v2 and the -agent suffixed entry pins v3
  • matrix-smoke-oss.json, matrix-smoke-plus.json, matrix-smoke-nap.json: Smoke test matrices
  • matrix-regression.json: Regression test matrix (K8s version combinations)
  • patch-images.json, patch-images-lts.json: Patch image definitions for patch-image.yml

Caching Strategy

  • Go binaries: cached by go_code_md5 hash (computed in .github/scripts/variables.sh over all *.go, go.mod, go.sum, *.tmpl, version.txt)
  • Docker images: cached by docker_md5 hash (computed over build/, .github/data/version.txt, internal/configs/njs, internal/configs/oidc)
  • Build tags: build_tag (t-<md5>) and stable_tag (s-<md5>) determine image freshness
  • Stable images in GCR Dev Registry are checked before rebuilding to prevent redundant Docker builds

Change Detection & Optimization

  • docs_only detection in variables.sh identifies PRs touching only docs (*.md, docs/**, examples/**) and skips expensive image builds and integration tests.

Fork Awareness

  • forked_workflow variable gates authenticated operations. Forked PRs get local-only builds without secret access.

Concurrency

  • CI workflows use group: ${{ github.ref_name }}-<suffix> with cancel-in-progress: true.
  • Release workflows (release-prep.yml and release-publish.yml) share group: ${{ inputs.release_branch }}-release with cancel-in-progress: false to ensure a publish dispatch cannot overtake a prep in flight.
  • LTS release workflows (release-prep-lts.yml and release-publish-lts.yml) share group: ${{ inputs.release_branch }}-release-lts with cancel-in-progress: false.

Secrets & Authentication

  • Secrets are retrieved from Azure Key Vault via nginx/ci-self-hosted/.github/actions/get-from-vault using OIDC / Workload Identity -- not stored directly as GitHub repository secrets.
  • Google Cloud authentication uses Workload Identity Federation (google-github-actions/auth).

Version Source of Truth

  • .github/data/version.txt contains IC_VERSION and HELM_CHART_VERSION.

Generated-Artifact Gates

The verify-codegen job in ci.yml regenerates and then diffs a specific path -- it is not a repository-wide check. A PR that edits the source without committing the regenerated output in these paths will not merge:

CommandPath diffed
go mod tidygo.mod, go.sum
make update-crdsconfig/crd/bases
make update-codegenpkg/**
make telemetry-schemainternal/telemetry

Gaps to be aware of: make update-crds also rewrites deploy/crds*.yaml and docs/crd/, but neither path is diffed, so stale bundles merge silently. Snapshot golden files are not covered by verify-codegen either -- they fail in unit-tests instead.


Gotchas

  • Release images are never built in the public repo. release-prep*.yml is gated to nginx/kubernetes-ingress-internal; the public repo only copies manifests with skopeo. Never add a docker build step to a publish-stage workflow
  • Never add secrets as GitHub repository secrets -- use Azure Key Vault OIDC flow via get-from-vault action
  • Always pin GitHub Actions to immutable SHA hashes with version comments, not mutable tags
  • Matrix JSON files in .github/data/ must stay in sync with Makefile image targets
  • NAP variants are linux/amd64 only -- do not add arm64 to NAP matrices
  • Renovate manages tool versions via # renovate: comments -- do not update manually
  • image-promotion.yml runs on merge to main and release-*, not on PR -- don't expect images from PRs
  • Release-only workflows and .github/config/config-* files must be listed in .github/scripts/exclude_ci_files.txt, otherwise they feed get_actions_md5() and invalidate stable_tag, forcing a full image rebuild
  • .github/config/config-* files are shared between release-publish.yml, image-promotion.yml, regression.yml and update-docker-images.yml. Never add a SOURCE_*_IMAGE_PREFIX override to one -- the other callers read from the dev registry and would break. Override TARGET_* only
  • Every job in a non-mirror-* workflow must be gated as github.repository == 'nginx/kubernetes-ingress' (or nginx/kubernetes-ingress-internal for internal-only jobs like prep) optionally followed by && ( ... ) with all extra conditions inside one balanced group. && binds tighter than ||, so an ungrouped chain like gate && (a) || (b) parses as (gate && (a)) || (b) and would run on a fork. Enforced by .github/scripts/validate-workflow-gating.sh (pre-commit + lint-format.yml); run it locally after editing any job's if
  • Adding a job to a shared workflow means picking the right gate string. An internal-repo gate in release-publish.yml (or vice versa) silently skips the job forever -- there is no error, just a permanently grey box
  • The operator job skips silently when operator_version is empty. If a release ships without an operator PR, check that input before assuming the dispatch failed
  • A job whose if contains always(), !cancelled() or failure() runs even when a needs dependency failed. Such jobs must assert every dependency explicitly (needs.<job>.result == 'success'), which is why the release jobs list results one by one
  • Asserting a downstream job is not enough -- a dependency that failed leaves its dependants skipped, and result == 'skipped' is usually an accepted arm. Assert the job that actually does the work (e.g. tag asserts release-gate, release-assets asserts variables)
  • contains() is a substring match, not a token match. Never gate on a value that is a prefix of another job name: contains(skip_step, 'prep') also matches push-prep-images, and contains(skip_step, 'publish') also matches publish-helm-chart
  • release-prep.yml and release-publish.yml share the <branch>-release concurrency group so a publish dispatch cannot overtake a prep still writing to the staging registry (likewise for LTS release workflows sharing <branch>-release-lts)
  • copy-images.sh resolves SOURCE_REGISTRY/TARGET_REGISTRY after sourcing CONFIG_PATH, so an explicit positional argument beats the config file. Pass the source registry as $1; let the config own TARGET_REGISTRY
  • Jobs that publish externally visible artifacts must fail loudly when there is nothing to publish. github-release errors on a missing draft release before closing the milestone, so a green run guarantees a published release
Repository
nginx/kubernetes-ingress
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.