Skip to content

andloh/actions-k8s-manifests-validate-kubeval

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Validate Kubernetes manifests by kubeval

Validate Kubernetes manifests in your repository.
This action uses Kubeval for validating.

sample comment

Usage

Basic

# .github/workflows/manifests-validation.yml
name: Pull Request Check

on: [pull_request]

jobs:
  validation:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: validate manifests in dir1 and dir2
        uses: andloh/[email protected]
        with:
          files: dir1,dir2
          token: ${{ secrets.GITHUB_TOKEN }}
          ignored_filename_patterns: .github/workflow/action.yaml,file2.yaml

Input parameters

Parameter Description Default
files Files or directories to validate .
version Version of Kubernetes to validate against master
strict Whether to not to check for extra properties true
openshift Whether to use the schemas from OpenShift rather than Kubernetes false
ignore_missing_schemas Whether or not to skip custom resources true
comment Write validation details to pull request comments true
token Github token for api. This is required if comment is true ""
ignored_filename_patterns A comma-separated list of regular expressions specifying filenames to ignore ""

About

A GitHub action for kubernetes yaml validation by using Kubeval

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 89.1%
  • Dockerfile 10.9%