Skip to content

Merge pull request #92 from FINTLabs/FKS-826-frontend-Fiks-feilende-t… #50

Merge pull request #92 from FINTLabs/FKS-826-frontend-Fiks-feilende-t…

Merge pull request #92 from FINTLabs/FKS-826-frontend-Fiks-feilende-t… #50

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache node_modules
uses: actions/cache@v4
id: node_modules
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- uses: actions/setup-node@v4
if: steps.node_modules.outputs.cache-hit != 'true'
with:
node-version: "20.x"
cache: "npm"
- run: npm ci --ignore-scripts
if: steps.node_modules.outputs.cache-hit != 'true'
# test:
# needs: [ install ]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: "20.x"
#
# - name: Cache node_modules
# uses: actions/cache@v4
# with:
# path: ./node_modules
# key: modules-${{ hashFiles('package-lock.json') }}
#
# - run: npm run test
build:
needs: [ install ]
runs-on: ubuntu-latest
permissions:
packages: write
outputs:
tags: ${{ steps.meta.outputs.tags }}
strategy:
matrix:
include:
- path: /beta/fintlabs-no
environment: beta
org: fintlabs-no
- path: /bfk-no
environment: api
org: bfk-no
- path: /afk-no
environment: api
org: afk-no
- path: /ofk-no
environment: api
org: ofk-no
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Cache node_modules
uses: actions/cache@v4
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- run: BASE_PATH=${{ matrix.path }} npm run build
# Bygg docker image
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.org }}-${{ matrix.environment }}
tags: |
type=sha,enable=true,priority=100,prefix=sha-,suffix=,format=short
type=raw,value=latest,enable=true
- name: Build and push Docker image
uses: docker/build-push-action@v5.0.0
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Cache static files
uses: actions/cache@v4
with:
path: |
./build
key: ${{ github.sha }}
deploy-to-aks:
name: deploy for ${{ matrix.org }} to ${{ matrix.cluster }}
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
packages: write
strategy:
matrix:
include:
- org: fintlabs-no
cluster: aks-beta-fint-2021-11-23
- org: bfk-no
cluster: aks-api-fint-2022-02-08
- org: afk-no
cluster: aks-api-fint-2022-02-08
- org: ofk-no
cluster: aks-api-fint-2022-02-08
steps:
- name: Checkout repository
uses: actions/checkout@v4
- 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
id: bake
uses: azure/k8s-bake@v2.4
with:
renderEngine: 'kustomize'
kustomizationPath: 'kustomize/overlays/${{ steps.environment.outputs.result }}/${{ matrix.org }}'
- uses: azure/login@v1
with:
creds: "${{ secrets[format('AKS_{0}_FINT_GITHUB', steps.environment.outputs.result)] }}"
- uses: azure/use-kubelogin@v1.1
with:
kubelogin-version: 'v0.0.26'
- name: Set the target cluster
uses: azure/aks-set-context@v3
with:
cluster-name: '${{ matrix.cluster }}'
resource-group: '${{ steps.resource-group.outputs.result }}'
admin: 'true'
use-kubelogin: 'true'
- name: Deploy
uses: azure/k8s-deploy@v4.9
with:
action: deploy
manifests: ${{ steps.bake.outputs.manifestsBundle }}
images: ${{ needs.build.outputs.tags }}
namespace: ${{ matrix.org }}