749059d235
The upstream woodpeckerci/plugin-docker-buildx image does not trust the internal CA, so pushes/pulls against artifactapi.k8s.syd1.au.unkin.net fail. Swap both the docker.yaml push step (docker-encapi) and the build.yaml PR dry-run step to the custom CA-baked image published at artifactapi.k8s.syd1.au.unkin.net/docker-internal/plugin-docker-buildx:latest.
16 lines
405 B
YAML
16 lines
405 B
YAML
when:
|
|
- event: tag
|
|
ref: refs/tags/v*
|
|
|
|
steps:
|
|
- name: docker-encapi
|
|
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/encapi
|
|
build_args:
|
|
VERSION: ${CI_COMMIT_TAG}
|
|
tags:
|
|
- ${CI_COMMIT_TAG}
|
|
- latest
|