Update full_performance_test.yml #5
Workflow file for this run
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: AKS Test | |
on: | |
pull_request: | |
types: [ closed ] | |
concurrency: | |
group: "Azure" | |
jobs: | |
azure: | |
name: "AKS Test" | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Configure AKS credentials | |
uses: azure/login@v2 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: Install Terraform | |
uses: hashicorp/[email protected] | |
with: | |
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} | |
terraform_version: "1.8.2" | |
- name: Create Terraform Cloud descriptors | |
run: | | |
cp aks/terraform.cloud.tf.example aks/terraform.cloud.tf | |
cp aks/main.tfvars.example aks/main.tfvars | |
cp .github/aks/deployments.tf deployments/terraform.cloud.tf | |
cp deployments/main.tfvars.example deployments/main.tfvars | |
cp .github/aks/tests.tf tests/terraform.cloud.tf | |
cp tests/main.tfvars.example tests/main.tfvars | |
- name: Stand up AKS cluster | |
run: | | |
cd aks | |
terraform init | |
terraform apply \ | |
--var-file=main.tfvars \ | |
--var="cluster_location=${{ vars.AZURE_CLUSTER_LOCATION }}" \ | |
--var="cluster_machine_type=${{ vars.AZURE_CLUSTER_MACHINE_TYPE }}" \ | |
--var="upstream_machine_type=${{ vars.AZURE_UPSTREAM_MACHINE_TYPE }}" \ | |
--var="tests_machine_type=${{ vars.AZURE_TEST_MACHINE_TYPE }}" \ | |
--auto-approve | |
- name: Connect to AKS cluster | |
run: | | |
az aks get-credentials \ | |
--resource-group "pt-${{ vars.AZURE_CLUSTER_LOCATION }}" \ | |
--name "pt-${{ vars.AZURE_CLUSTER_LOCATION }}" | |
kubectl config rename-context $(kubectl config current-context) performance-testing | |
- name: Deploy testing resources | |
run: | | |
cd deployments | |
terraform init | |
terraform apply \ | |
--var-file=main.tfvars \ | |
--var="kubernetes_config_context=performance-testing" \ | |
--var="tyk_license=${{ secrets.DASH_LICENSE }}" \ | |
--auto-approve | |
- name: Run Tests | |
run: | | |
cd tests | |
terraform init | |
terraform apply \ | |
--var-file=main.tfvars \ | |
--var="kubernetes_config_context=performance-testing" \ | |
--auto-approve | |
- name: Test Grafana Snapshot | |
run: kubectl logs -n dependencies $(kubectl get pods -n dependencies --selector=app=snapshot-job -o jsonpath='{.items[-1].metadata.name}') --tail=1 | |
- name: Destroy Tests | |
run: | | |
cd tests | |
terraform destroy \ | |
--var-file=main.tfvars \ | |
--var="kubernetes_config_context=performance-testing" \ | |
--auto-approve | |
- name: Destroy testing resources | |
run: | | |
cd deployments | |
terraform destroy \ | |
--var-file=main.tfvars \ | |
--var="kubernetes_config_context=performance-testing" \ | |
--var="tyk_license=${{ secrets.DASH_LICENSE }}" \ | |
--auto-approve | |
- name: Destroy AKS cluster | |
run: | | |
cd aks | |
terraform destroy \ | |
--var-file=main.tfvars \ | |
--var="cluster_location=${{ vars.AZURE_CLUSTER_LOCATION }}" \ | |
--var="cluster_machine_type=${{ vars.AZURE_CLUSTER_MACHINE_TYPE }}" \ | |
--var="upstream_machine_type=${{ vars.AZURE_UPSTREAM_MACHINE_TYPE }}" \ | |
--var="tests_machine_type=${{ vars.AZURE_TEST_MACHINE_TYPE }}" \ | |
--auto-approve |