softplayer-backend/.woodpecker/build.yaml

30 lines
618 B
YAML
Raw Normal View History

2024-03-19 15:58:05 +00:00
---
when:
event:
- push
steps:
build:
2024-09-20 04:41:29 +00:00
image: zot.badhouseplants.net/badhouseplants/badhouseplants-builder:latest
2024-03-19 15:58:05 +00:00
name: Build shoebill operator image
privileged: true
commands:
- |
if [[ "${CI_COMMIT_TAG}" ]]; then
export CUSTOM_TAG="${CI_COMMIT_TAG}";
fi
- build-container
secrets:
2024-09-20 04:41:29 +00:00
- registry_token
2024-03-19 15:58:05 +00:00
backend_options:
kubernetes:
resources:
requests:
memory: 500Mi
cpu: 200m
limits:
memory: 1000Mi
cpu: 1000m
2024-04-03 18:08:38 +00:00
securityContext:
privileged: true