Try migrating to Woodpecker

This commit is contained in:
Nikolai Rodionov 2024-05-25 14:33:08 +02:00
parent 9665015b44
commit 984f11e837
Signed by: allanger
GPG Key ID: 0AA46A90E25592AD
2 changed files with 33 additions and 31 deletions

View File

@ -1,31 +0,0 @@
---
# ----------------------------------------------
# -- Build an image and push it to the registry
# ----------------------------------------------
kind: pipeline
type: docker
name: Build the builder
trigger:
event:
- push
steps:
- name: Prepare the builder image
image: alpine
privileged: true
environment:
GITEA_TOKEN:
from_secret: GITEA_TOKEN
BUILDAH_REG: git.badhouseplants.net/badhouseplants/badhouseplants-builder
commands:
- ./build
- name: Cleanup
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:latest
environment:
GITEA_TOKEN:
from_secret: GITEA_TOKEN
BUILDAH_REG: git.badhouseplants.net/badhouseplants/badhouseplants-builder
commands:
- cleanup

33
.woodpecker.yaml Normal file
View File

@ -0,0 +1,33 @@
---
when:
event:
- push
steps:
build:
image: alpine
name: Build shoebill operator image
privileged: true
commands:
- ./build
secrets:
- gitea_token
backend_options:
kubernetes:
resources:
requests:
memory: 500Mi
cpu: 200m
limits:
memory: 1000Mi
cpu: 1000m
securityContext:
privileged: true
cleanup:
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:latest
secrets:
- gitea_token
environment:
BUILDAH_REG: git.badhouseplants.net/badhouseplants/badhouseplants-builder
commands:
- cleanup