Skip to content

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"]
}