added afk and ofk to deploy #45
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: 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 | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
with: | |
action: deploy | |
manifests: ${{ steps.bake.outputs.manifestsBundle }} | |
images: ${{ needs.build.outputs.tags }} | |
namespace: ${{ matrix.org }} | |