Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 32s
22 lines
558 B
YAML
22 lines
558 B
YAML
name: Validate Kubernetes Manifests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main]
|
|
|
|
jobs:
|
|
kubeconform:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker.io/archlinux/archlinux:latest
|
|
steps:
|
|
- name: Setup environment
|
|
run: |
|
|
pacman -Syu --noconfirm kubeconform git
|
|
- 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
|