Skip to content

Ascendant-Systems/kubernetes-manifest-validation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Validate Kubernetes Manifests

GitHub reusable workflow to run Kubernetes manifest validation using Attest internal validation image

Usage

To use this workflow, add a new workflow file to your .github/workflows directory containing the following:

name: Validate Kubernetes Manifests
on: pull_request

jobs:
  validate-kubernetes-manifests:
    uses: attest/kubernetes-manifest-validation/.github/workflows/validate.yaml@v1.0.0
    secrets:
      AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_ID }}
      AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
      PAT_ATTEST_ADMIN_CI: ${{ secrets.PAT_ATTEST_ADMIN_CI }}
      VALIDATION_IMAGE: 391094253726.dkr.ecr.eu-west-1.amazonaws.com/kubernetes-manifest-validation

This workflow will look for manifests in either the k8s or .infra/k8s directory. If your repository has subdirectories containing manifests, you can specify these using the service field. Given a repository with manifests in the maker and taker subdirectories, it can be configured like this:

validate-kubernetes-manifests:
  uses: attest/kubernetes-manifest-validation/.github/workflows/validate.yaml@v1.0.0
  with:
    service: 'maker,taker'
  secrets:
    ...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published