9e65bf7c9a
Buildkit in the upstream woodpeckerci/plugin-docker-buildx image does not trust the artifactapi internal Vault CA, so pushes to docker-internal fail on TLS. - Switch the docker.yaml push step to the CA-baked custom plugin image - Switch the build.yaml PR dry-run step to the same custom image
27 lines
790 B
YAML
27 lines
790 B
YAML
when:
|
|
- event: tag
|
|
ref: refs/tags/v*
|
|
|
|
steps:
|
|
# No push credentials: the in-cluster runner has push access to the artifactapi
|
|
# docker-internal registry (same credential-less pattern as jellyfin-ha).
|
|
- name: docker
|
|
image: artifactapi.k8s.syd1.au.unkin.net/docker-internal/plugin-docker-buildx:latest
|
|
settings:
|
|
registry: artifactapi.k8s.syd1.au.unkin.net
|
|
repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/autobackup-operator
|
|
dockerfile: Dockerfile.operator
|
|
tags:
|
|
- ${CI_COMMIT_TAG}
|
|
- latest
|
|
backend_options:
|
|
kubernetes:
|
|
serviceAccountName: autobackup-operator-ci
|
|
resources:
|
|
requests:
|
|
memory: 512Mi
|
|
cpu: 1
|
|
limits:
|
|
memory: 2Gi
|
|
cpu: 2
|