improved docker images

This commit is contained in:
Patrick Schratz 2024-09-07 22:39:36 +02:00
commit 893afd4d98
Signed by: pat-s
GPG key ID: 3C6318841EF78925
2 changed files with 146 additions and 22 deletions

View file

@ -2,6 +2,9 @@ when:
- event: cron
cron: images
depends_on:
- warm_up_images
matrix:
include:
- PLATFORM: redhat-9

View file

@ -0,0 +1,44 @@
when:
event: [manual]
skip_clone: true
matrix:
include:
- PLATFORM: redhat-9
ARCH: arm64
- PLATFORM: redhat-8
ARCH: arm64
- PLATFORM: ubuntu-2404
ARCH: arm64
- PLATFORM: ubuntu-2204
ARCH: arm64
- PLATFORM: alpine-320
ARCH: arm64
- PLATFORM: alpine-320
ARCH: amd64
steps:
- name: 'Warming up'
image: busybox:latest
failure: ignore
commands:
- sleep 300
- echo "Warmed Up"
backend_options:
kubernetes:
### PROD-sequential
resources:
requests:
memory: 500Mi
cpu: 1000m
limits:
memory: 800Mi
cpu: 1000m
nodeSelector:
kubernetes.io/arch: "${ARCH}"
tolerations:
- key: "CI"
operator: "Equal"
value: "true"
effect: "NoSchedule"