Files
GitOps/kargo-projects/nowchess/ncs-promotion-template.yaml
T

154 lines
4.6 KiB
YAML

apiVersion: kargo.akuity.io/v1alpha1
kind: PromotionTask
metadata:
name: nowchess-kargo-promotion-template
namespace: nowchess-kargo
spec:
vars:
- name: repoUrl
value: https://git.janis-eccarius.de/NowChess/Gitops.git
- name: component
value: ${{ ctx.targetFreight.origin.name }}
- name: imageRepoUrl
value: 'ghcr.io/now-chess/now-chess-systems/${{ vars.component }}'
- name: branch
value: main
- name: imageTag
value: ${{ imageFrom(vars.imageRepoUrl).Tag }}
- name: discordWebhook
value: ${{ secret("discord-webhook").webhook }}
steps:
- uses: git-clone
config:
repoURL: ${{ vars.repoUrl }}
checkout:
- branch: ${{ vars.branch }}
path: ./work
- uses: kustomize-set-image
as: set-image
config:
path: ./work/nowchess/${{ vars.folder }}
images:
- image: ${{ vars.imageRepoUrl }}
tag: ${{ vars.imageTag }}
- uses: git-commit
as: commit
config:
path: ./work
message: "chore(kargo): update image tag ${{ vars.component }} to ${{ vars.imageTag }} on ${{ ctx.stage }}"
- uses: git-push
as: push
if: "${{ status('commit') != 'Skipped'}}"
config:
path: ./work
generateTargetBranch: true
- uses: git-open-pr
if: "${{ status('commit') != 'Skipped'}}"
as: open-pr
config:
repoURL: ${{ vars.repoUrl }}
provider: "gitea"
sourceBranch: ${{ task.outputs['push'].branch }}
targetBranch: ${{ vars.branch }}
title: "chore(kargo): update image tag ${{ vars.component }} to ${{ vars.imageTag }} on ${{ ctx.stage }}"
labels: ["kargo", "promotion"]
- uses: git-merge-pr
if: "${{ status('open-pr') != 'Skipped'}}"
as: merge-pr
config:
repoURL: ${{ vars.repoUrl }}
provider: "gitea"
prNumber: ${{ task.outputs['open-pr'].pr.id }}
mergeMethod: "squash"
wait: true
- uses: git-wait-for-pr
if: "${{ status('open-pr') != 'Skipped'}}"
as: wait-for-pr
config:
repoURL: ${{ vars.repoUrl }}
provider: "gitea"
prNumber: ${{ task.outputs['open-pr'].pr.id }}
- uses: argocd-update
as: argocd-update
config:
apps:
- name: ${{ vars.argocdName }}
sources:
- repoURL: git@git.janis-eccarius.de:NowChess/Gitops.git
kustomize:
images:
- repoURL: ${{ vars.imageRepoUrl }}
tag: ${{ vars.imageTag }}
- uses: http
if: "${{ success() }}"
as: notify-success
config:
url: ${{ vars.discordWebhook }}
method: POST
headers:
Content-Type: application/json
body: |
{
"embeds": [
{
"title": "✅ Promotion Succeeded",
"description": "Component promoted successfully",
"color": 3066993,
"fields": [
{
"name": "Component",
"value": "${{ vars.component }}",
"inline": true
},
{
"name": "Image Tag",
"value": "${{ vars.imageTag }}",
"inline": true
},
{
"name": "Stage",
"value": "${{ ctx.stage }}",
"inline": true
}
],
"timestamp": "${{ now.unix }}"
}
]
}
- uses: http
if: "${{ failure() }}"
as: notify-failure
config:
url: ${{ vars.discordWebhook }}
method: POST
headers:
Content-Type: application/json
body: |
{
"embeds": [
{
"title": "❌ Promotion Failed",
"description": "Component promotion failed",
"color": 15158332,
"fields": [
{
"name": "Component",
"value": "${{ vars.component }}",
"inline": true
},
{
"name": "Image Tag",
"value": "${{ vars.imageTag }}",
"inline": true
},
{
"name": "Stage",
"value": "${{ ctx.stage }}",
"inline": true
}
],
"timestamp": "${{ now.unix }}"
}
]
}