Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
/ actions-old Public archive
forked from bltavares/actions

Latest commit

 

History

History
 
 

kubeval

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

kubeval action

Validations on Push

This actions will Kubernets (k8s) in the project, using kubeval

The action by default search for all yaml or yml files on the project to lint, but it is possible to specify a folder to search.

Example workflow

workflow "on push" {
  on = "push"
  resolves = ["kubeval"]
}

action "cljfmt" {
  uses = "bltavares/actions/kubeval@master"
  # optionally provide path to yamls
  # args = ["folder/to/yamls"]
}