Compare commits

..

6 commits

Author SHA1 Message Date
611320a699 Merge pull request 'merge from dev' (#1) from dev into main
Reviewed-on: http://forgejo.forgejo.svc.cluster.local:3000/jad0s/gitops/pulls/1
2026-05-19 17:39:07 +00:00
c9700654f7 fix(actions): switch from curl to wget
All checks were successful
/ validate (push) Successful in 4s
2026-05-19 19:37:52 +02:00
9ab1fc988b fix(actions): add verbosity to curl command
All checks were successful
/ validate (push) Successful in 5s
2026-05-19 19:29:11 +02:00
c82664d952 Merge branch 'main' into dev
All checks were successful
/ validate (push) Successful in 4s
Add custom CRD support into the kubeconform check, and ignore unknown
CRDs.
2026-05-19 19:19:20 +02:00
b646685870 test: removed test file
Some checks failed
/ validate (push) Has been cancelled
2026-05-19 15:57:23 +02:00
eb17d8174d test: added random test yaml to test kubeconform forgejo action
Some checks failed
/ validate (push) Failing after 5m3s
2026-05-19 15:38:04 +02:00

View file

@ -12,7 +12,7 @@ jobs:
- name: Install kubeconform - name: Install kubeconform
run: | run: |
curl -sL https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz | tar xz wget -O- https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz | tar xz
mv kubeconform /usr/local/bin mv kubeconform /usr/local/bin
- name: Validate manifests - name: Validate manifests