The templates referenced zot.orchard9.ai which has no DNS record. The actual zot registry is at registry.threesix.ai. Also updated static templates to use Kaniko plugin instead of docker:24-dind. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
562 B
YAML
21 lines
562 B
YAML
steps:
|
|
docker:
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
destinations:
|
|
- registry.threesix.ai/{{PROJECT_NAME}}:latest
|
|
- registry.threesix.ai/{{PROJECT_NAME}}:${CI_COMMIT_SHA:0:8}
|
|
cache: true
|
|
skip-tls-verify: true
|
|
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
deploy:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- kubectl set image deployment/{{PROJECT_NAME}} {{PROJECT_NAME}}=registry.threesix.ai/{{PROJECT_NAME}}:${CI_COMMIT_SHA:0:8} -n projects
|
|
when:
|
|
- event: push
|
|
branch: main
|