Skip to content

dipshit/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

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kubeval

GitHub action for validating k8s yaml & templates

Usage

This action runs in the kubeval container, it passes your input to params to kubeval.

If all your k8s yaml is in a folder called k8s, run it like this:

name: CI

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - uses: dipshit/kubeval@1.0
      with:
        params: 'k8s/*'

Example

I use this for my minecraft server, see another example use here.