The plugin-docker-buildx (Codeberg version) changed CacheFrom from string to StringSlice, which causes urfave/cli to split on commas. The cache_images setting properly handles registry refs by generating both --cache-from and --cache-to flags automatically.
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
when:
|
|
event: push
|
|
path: "stacks/f1-stream/files/**"
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
attempts: 5
|
|
backoff: 10s
|
|
|
|
steps:
|
|
- name: build-image
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
username: "viktorbarzin"
|
|
password:
|
|
from_secret: dockerhub-pat
|
|
repo:
|
|
- viktorbarzin/f1-stream
|
|
- registry.viktorbarzin.lan:5050/f1-stream
|
|
logins:
|
|
- registry: https://index.docker.io/v1/
|
|
username: viktorbarzin
|
|
password:
|
|
from_secret: dockerhub-pat
|
|
dockerfile: stacks/f1-stream/files/Dockerfile
|
|
context: stacks/f1-stream/files
|
|
platforms: linux/amd64
|
|
provenance: false
|
|
tags: latest
|
|
cache_images: registry.viktorbarzin.lan:5050/f1-stream:buildcache
|
|
buildkit_config: |
|
|
[registry."registry.viktorbarzin.lan:5050"]
|
|
http = true
|
|
insecure = true
|
|
|
|
- name: deploy
|
|
image: bitnami/kubectl
|
|
commands:
|
|
- kubectl -n f1-stream rollout restart deployment f1-stream
|
|
- kubectl -n f1-stream rollout status deployment f1-stream --timeout=120s
|