trigger-cd #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD | |
on: | |
repository_dispatch: | |
types: [trigger-cd] | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
NAMESPACE: fint-core | |
jobs: | |
build-and-push: | |
name: Build and push Docker image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
outputs: | |
tags: ${{ steps.meta.outputs.tags }} | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
uses: docker/[email protected] | |
id: meta | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: type=sha,enable=true,priority=100,prefix=shaF-,suffix=,format=short | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
deploy-to-aks: | |
name: deploy to ${{ matrix.cluster }} | |
runs-on: ubuntu-latest | |
needs: build-and-push | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
cluster: | |
- aks-alpha-fint-2021-11-18 | |
- aks-beta-fint-2021-11-23 | |
- aks-api-fint-2022-02-08 | |
# - aks-pwf-fint-2021-10-20 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Get environment | |
uses: actions/github-script@v6 | |
id: environment | |
with: | |
script: return '${{ matrix.cluster }}'.split('-')[1] | |
result-encoding: string | |
- name: Get resource group name | |
uses: actions/github-script@v6 | |
id: resource-group | |
with: | |
script: return 'rg-aks-${{ steps.environment.outputs.result }}' | |
result-encoding: string | |
- name: Bake manifests with Kustomize | |
uses: azure/[email protected] | |
id: bake | |
with: | |
renderEngine: 'kustomize' | |
kustomizationPath: 'kustomize/overlays/${{ steps.environment.outputs.result }}' | |
- uses: azure/login@v1 | |
with: | |
creds: "${{ secrets[format('AKS_{0}_FINT_GITHUB', steps.environment.outputs.result)] }}" | |
- uses: azure/[email protected] | |
with: | |
kubelogin-version: 'v0.0.26' | |
- uses: azure/aks-set-context@v3 | |
with: | |
resource-group: '${{ steps.resource-group.outputs.result }}' | |
cluster-name: '${{ matrix.cluster }}' | |
admin: 'true' | |
use-kubelogin: 'true' | |
- name: Deploy to cluster | |
uses: azure/[email protected] | |
with: | |
action: deploy | |
manifests: ${{ steps.bake.outputs.manifestsBundle }} | |
images: ${{ needs.build-and-push.outputs.tags }} | |
namespace: ${{ env.NAMESPACE }} |