-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (56 loc) · 2.11 KB
/
apply.yaml
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
name: Apply
on:
push:
branches: [main]
workflow_dispatch:
jobs:
apply:
runs-on: ubuntu-latest
env:
GOOGLE_CREDENTIALS: ${{ secrets.CREDENTIALS }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Auth GCloud
uses: "google-github-actions/[email protected]"
with:
credentials_json: ${{ secrets.CREDENTIALS }}
export_environment_variables: true
create_credentials_file: true
- name: Set up Cloud SDK
uses: "google-github-actions/setup-gcloud@v2"
- name: Use gcloud CLI
run: gcloud container clusters list
- name: Setup Cluster Kubernetes
uses: "google-github-actions/get-gke-credentials@v2"
with:
cluster_name: ${{ vars.CLUSTER_NAME }}
location: ${{ vars.ZONE }}
- name: Configure Docker Client
run: |-
gcloud auth configure-docker --quiet
gcloud auth configure-docker ${{ vars.REGION }}-docker.pkg.dev --quiet
- name: Publish docker image
env:
GOOGLE_CREDENTIALS: ${{ secrets.CREDENTIALS }}
run: |
docker build -t ${{ vars.REGION }}-docker.pkg.dev/${{ vars.PROJECT_ID }}/repository/app:${{ github.run_id }} .
docker push ${{ vars.REGION }}-docker.pkg.dev/${{ vars.PROJECT_ID }}/repository/app:${{ github.run_id }}
- name: Setup Namespace
run: kubectl config set-context --current --namespace=orderly
- name: Create ConfigMap
working-directory: k8s/
run: |
echo "$(cat api-configmap.yaml)" | envsubst | kubectl apply -f -
env:
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_IP: ${{ vars.DB_IP }}
DB_USERNAME: ${{ vars.DB_USERNAME }}
DB_NAME: ${{ vars.DB_NAME }}
- name: apply api
env:
IMAGE_NAME: ${{ vars.REGION }}-docker.pkg.dev/${{ vars.PROJECT_ID }}/repository/app:${{ github.run_id }}
run: |
echo "$(cat k8s/api-deployment.yaml)" | envsubst | kubectl apply -f -
kubectl apply -f k8s/api-hpa.yaml
kubectl apply -f k8s/api-service.yaml