This commit is contained in:
cătălin 2026-04-08 20:09:04 +02:00
commit 2963cc68c9
No known key found for this signature in database
15 changed files with 189 additions and 189 deletions

32
.woodpecker/fmt.yaml Normal file
View file

@ -0,0 +1,32 @@
---
when:
- event: push
branch: feat/woodpecker-ci
steps:
- name: build-image
image: woodpeckerci/plugin-docker-buildx
settings:
registry: git.roboces.dev/catalin/fukuops
repo: git.roboces.dev/catalin/fukuops
tags: ci-fmt
target: fmt
- name: pre-commit
image: git.roboces.dev/catalin/fukuops:ci-fmt
depends_on: [build-image]
commands:
- make fmt--pre-commit
- name: kubeconform
image: git.roboces.dev/catalin/fukuops:ci-fmt
depends_on: [build-image]
commands:
#- make fmt--kubeconform
- echo "foo"
- name: tflint
image: git.roboces.dev/catalin/fukuops:ci-fmt
depends_on: [build-image]
commands:
- make fmt--tflint

20
.woodpecker/tofu.yaml Normal file
View file

@ -0,0 +1,20 @@
---
when:
- event: push
branch: feat/woodpecker-ci
steps:
- name: tofu-authentik
image: ghcr.io/opentofu/opentofu:1.10.9-minimal
commands:
- cd tofu/authentik
- tofu init
- tofu apply -auto-approve
- name: tofu-adguard
image: ghcr.io/opentofu/opentofu:1.10.9-minimal
commands:
- cd tofu/adguard
- tofu init
- tofu apply -auto-approve