-
Notifications
You must be signed in to change notification settings - Fork 13
/
frontend.yml
81 lines (67 loc) · 2.4 KB
/
frontend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# This is a workflow that is build and deploy the frontend
name: Frontend
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'frontend/**'
env:
REGISTRY: 3a7jouokyffroregistry.azurecr.io
REGISTRY_USER: 3a7jouokyffroregistry
IMAGE_NAME: palansa/frontend:latest
NAMESPACE: palansa
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Check out repository code
uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Docker Build
working-directory: ./frontend
run: |
docker build -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} -f ./Dockerfile .
- name: Docker Push Image
run: |
echo ${{ secrets.REGISTRY_SECRET }} | docker login ${{ env.REGISTRY }} -u ${{ env.REGISTRY_USER }} --password-stdin
docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
deploy:
# The type of runner that the job will run on
runs-on: ubuntu-latest
needs: build
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Check out repository code
uses: actions/checkout@v3
- uses: azure/k8s-set-context@v3
with:
method: kubeconfig
kubeconfig: ${{ secrets.KUBECONFIG }}
- name: Create or Patch docker pull secret
run: |
kubectl create secret docker-registry docker-pull-secret \
--save-config --dry-run=client \
--docker-username=${{ env.REGISTRY_USER }} \
--docker-password=${{ secrets.REGISTRY_SECRET }} \
--docker-server=${{ env.REGISTRY }} \
-n ${{ env.NAMESPACE }} -o yaml | \
kubectl apply -f -
- name: Create or Patch ngnix.conf
working-directory: ./frontend
run: |
kubectl create configmap nginx \
--save-config --dry-run=client \
--from-file=nginx.conf \
-n ${{ env.NAMESPACE }} -o yaml | \
kubectl apply -f -
- name: Deploy Frontend
working-directory: ./frontend/k8s
run: |
kubectl apply -f . -n ${{ env.NAMESPACE }}