-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (29 loc) · 984 Bytes
/
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
name: Apply
on: [push, workflow_dispatch]
jobs:
apply:
runs-on: ubuntu-latest
env:
GOOGLE_CREDENTIALS: ${{ secrets.CREDENTIALS }}
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Auth GCloud
uses: 'google-github-actions/auth@v2.1.2'
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: Setup Namespace
run: kubectl config set-context --current --namespace=orderly
- name: apply api
run: kubectl apply -f k8s/