-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (54 loc) · 2.05 KB
/
gke-tests.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
name: GKE Tests
on:
workflow_dispatch:
inputs:
tests_timestamp_enabled:
description: 'Enabled Timestamp Test'
required: false
default: true
type: boolean
tests_httpbin_enabled:
description: 'Enabled Httpbin Test'
required: false
default: false
type: boolean
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Authenticate into gcloud
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.GCP_CREDENTIALS }}
- name: Install gcloud CLI
uses: google-github-actions/[email protected]
- name: Install gcloud k8s auto component
run: gcloud components install gke-gcloud-auth-plugin
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Connect to GKE cluster
run: |
gcloud container clusters get-credentials "pt-${{ vars.GCP_CLUSTER_MACHINE_TYPE }}" \
--region "${{ vars.GCP_CLUSTER_LOCATION }}" \
--project "${{ secrets.GCP_PROJECT }}"
kubectl config rename-context $(kubectl config current-context) performance-testing-gke
- name: Run Tests
run: |
cd tests
terraform init
terraform apply \
--var="kubernetes_config_context=performance-testing-gke" \
--var="tests_timestamp_enabled=${{ inputs.tests_timestamp_enabled }}" \
--var="tests_httpbin_enabled=${{ inputs.tests_httpbin_enabled }}" \
--auto-approve
- name: Access to Grafana Dashboard
run: |
echo "###################################################################
echo "#
echo "# http://$(kubectl get svc -n dependencies grafana -ojsonpath='{.status.loadBalancer.ingress[0].ip}')"
echo "# Username: Admin"
echo "# Password: topsecretpassword"
echo "#
echo "###################################################################