Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 2s
19 lines
458 B
YAML
19 lines
458 B
YAML
name: Validate Kubernetes Manifests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main]
|
|
|
|
jobs:
|
|
kubeconform:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/yannh/kubeconform:latest
|
|
steps:
|
|
- name: Checkout code
|
|
run: |
|
|
git clone https://gitea.akshun-lab.cc/aggarwalakshun/k3s.git /mnt
|
|
- name: Validate Manifests
|
|
run: |
|
|
/kubeconform -verbose -summary -schema-location default -kinds '*' /mnt/**/*.yml
|