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.

70

Quality

85%

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

SKILL.md
Quality
Evals
Security

NIC CI/CD Pipelines

Workflow Architecture

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

ci.yml (main CI orchestrator)
  -> checks (format, lint, codegen, CRDs, chart version)
  -> unit-tests
  -> build-artifacts.yml (reusable)
       -> build-oss.yml (per-variant, matrix)
       -> build-plus.yml (per-variant, matrix)  <- also used for NAP variants
  -> helm-tests
  -> setup-smoke.yml (reusable)
  -> e2e tests

image-promotion.yml (post-merge)
  -> builds images, tags edge/stable
  -> Trivy + DockerScout security scans
  -> publishes edge Helm charts

release.yml (manual dispatch)
  -> oss-release.yml
  -> plus-release.yml
  -> publish-helm.yml
  -> certify-ubi-image.yml
  -> marketplace pushes (AWS, Azure, GCP)

Key Workflows

WorkflowTriggerPurpose
ci.ymlPR to main/release-*, merge_group, workflow_dispatchMain CI: checks + build + test
lint-format.ymlPR to main, merge_groupgoimports, gofumpt, golangci-lint, actionlint
regression.ymlDaily cron (03:00 UTC), manualMulti-K8s-version regression
image-promotion.ymlPush to main/release-*Post-merge image tagging + scanning
release.ymlManual dispatchFull release orchestrator
build-base-images.ymlWeekday cron (04:30 UTC)Rebuilds all base images

Release Sub-Workflows (called by release.yml)

WorkflowPurpose
oss-release.ymlOSS image release
plus-release.ymlPlus/NAP image release
publish-helm.ymlHelm chart publishing to registry

Reusable Build Workflows (called via workflow_call)

WorkflowPurpose
build-artifacts.ymlOrchestrates GoReleaser binary builds + image matrix
build-oss.ymlBuilds single OSS image variant
build-plus.ymlBuilds single Plus/NAP image variant
build-test-image.ymlBuilds Python e2e test image
setup-smoke.ymlSets up and runs smoke tests
patch-image.ymlOS-level patches on existing images
retag-images.ymlRe-tags images in GCR Dev Registry

Security & Compliance

WorkflowPurpose
codeql-analysis.ymlGitHub CodeQL scanning
scorecards.ymlOpenSSF Scorecards
dependency-review.ymlDependency review for PRs
certify-ubi-image.ymlRed Hat UBI certification for OpenShift

CI Patterns

Matrix Builds

Image variants 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-nap.json: WAF v4/v5, DoS, UBI 10 (amd64 only)
  • 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 image definitions for patch-image.yml

Caching Strategy

  • Go binaries: cached by go_code_md5 hash
  • Docker images: cached by docker_md5 hash
  • Stable images in GCR are checked before rebuilding

Fork Awareness

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

Concurrency

Each workflow uses group: ${{ github.ref_name }}-<suffix> with cancel-in-progress: true.

Secrets

Retrieved from Azure Key Vault via OIDC -- not stored as GitHub secrets directly.

Version Source of Truth

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


Gotchas

  • Never add secrets as GitHub repository secrets -- use Azure Key Vault OIDC flow
  • Always pin GitHub Actions to immutable SHA hashes, 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, not on PR -- don't expect images from PRs
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.