On Demand VRFV2 Performance Test #207
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: On Demand VRFV2 Performance Test | |
on: | |
workflow_dispatch: | |
inputs: | |
base64Config: | |
description: base64-ed config | |
required: true | |
type: string | |
test_type: | |
description: Performance Test Type of test to run | |
type: choice | |
options: | |
- "Smoke" | |
- "Soak" | |
- "Load" | |
- "Stress" | |
- "Spike" | |
test_ids: | |
description: "Tests to run (see .github/e2e-tests.yml)" | |
required: false | |
default: "load/vrfv2/vrfv2_test.go:TestVRFV2Performance" | |
test_secrets_override_key: | |
description: 'Key to run tests with custom test secrets' | |
required: false | |
type: string | |
jobs: | |
run-e2e-tests-workflow: | |
name: Run E2E Tests | |
uses: ./.github/workflows/run-e2e-tests-reusable-workflow.yml | |
with: | |
chainlink_version: ${{ github.sha }} | |
require_chainlink_image_versions_in_qa_ecr: ${{ github.sha }} | |
test_config_override_base64: ${{ inputs.base64Config}} | |
test_ids: ${{ inputs.test_ids }} | |
test_type: ${{ inputs.test_type }} | |
secrets: | |
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | |
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | |
QA_AWS_ACCOUNT_NUMBER: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }} | |
QA_PYROSCOPE_INSTANCE: ${{ secrets.QA_PYROSCOPE_INSTANCE }} | |
QA_PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }} | |
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }} | |
GRAFANA_INTERNAL_TENANT_ID: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
GRAFANA_INTERNAL_BASIC_AUTH: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
GRAFANA_INTERNAL_HOST: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
GRAFANA_INTERNAL_URL_SHORTENER_TOKEN: ${{ secrets.GRAFANA_INTERNAL_URL_SHORTENER_TOKEN }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AWS_REGION: ${{ secrets.QA_AWS_REGION }} | |
AWS_OIDC_IAM_ROLE_VALIDATION_PROD_ARN: ${{ secrets.AWS_OIDC_IAM_ROLE_VALIDATION_PROD_ARN }} | |
AWS_API_GW_HOST_GRAFANA: ${{ secrets.AWS_API_GW_HOST_GRAFANA }} | |
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }} | |
TEST_SECRETS_OVERRIDE_BASE64: ${{ secrets[inputs.test_secrets_override_key] }} | |