52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
# CI/CD Pipeline for composed
|
|
# Components will add their build steps below the marker
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
depth: 1
|
|
|
|
steps:
|
|
# COMPONENT_STEPS_BELOW
|
|
|
|
# Woodpecker CI step for api service
|
|
# Add this step to your .woodpecker.yml
|
|
|
|
build-api:
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
registry: registry.threesix.ai
|
|
repo: composed/api
|
|
tags:
|
|
- latest
|
|
- ${CI_COMMIT_SHA:0:8}
|
|
context: .
|
|
dockerfile: services/api/Dockerfile
|
|
cache: true
|
|
skip-tls-verify: true
|
|
when:
|
|
branch: main
|
|
event: push
|
|
|
|
deploy-api:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- kubectl set image deployment/composed-api
|
|
api=registry.threesix.ai/composed/api:${CI_COMMIT_SHA:0:8}
|
|
-n projects
|
|
|| echo "No deployment found for api, skipping"
|
|
when:
|
|
branch: main
|
|
event: push
|
|
# Do not remove the marker above - component steps are inserted here
|
|
|
|
verify:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- echo "Pipeline complete for composed"
|
|
- kubectl get deployments -n projects -l app=composed --no-headers || true
|
|
when:
|
|
branch: main
|
|
event: push
|