App Signals Enablement - E2E EKS Canary Testing #9223
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
## This workflow aims to run the Application Signals end-to-end tests as a canary to | |
## test the artifacts for App Signals enablement. It will deploy a sample app and remote | |
## service onto an EKS cluster, call the APIs, and validate the generated telemetry, | |
## including logs, metrics, and traces. | |
name: App Signals Enablement - E2E EKS Canary Testing | |
on: | |
schedule: | |
- cron: '0/15 * * * *' # run the workflow every 15 minutes | |
workflow_dispatch: # be able to run the workflow on demand | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
e2e-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
aws-region: ['us-east-1', 'us-east-2', 'eu-west-1', 'ap-northeast-1', 'ap-southeast-2'] | |
uses: ./.github/workflows/appsignals-e2e-eks-test.yml | |
secrets: inherit | |
with: | |
aws-region: ${{ matrix.aws-region }} | |
test-cluster-name: 'e2e-canary-test' | |
caller-workflow-name: 'appsignals-e2e-eks-canary-test' |