2022-05-09 03:45:59 -04:00
|
|
|
name: e2e Test Manual
|
2022-05-03 05:15:53 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
workerNodesCount:
|
|
|
|
description: 'Number of worker nodes to spawn.'
|
|
|
|
default: '2'
|
|
|
|
required: true
|
|
|
|
controlNodesCount:
|
|
|
|
description: 'Number of control-plane nodes to spawn.'
|
|
|
|
default: '1'
|
|
|
|
required: true
|
|
|
|
autoscale:
|
2022-05-04 07:52:27 -04:00
|
|
|
description: 'Autoscale?'
|
2022-05-03 05:15:53 -04:00
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
required: true
|
|
|
|
cloudProvider:
|
|
|
|
description: 'Which cloud provider to use.'
|
|
|
|
type: choice
|
|
|
|
options:
|
|
|
|
- 'gcp'
|
2022-05-04 07:52:27 -04:00
|
|
|
- 'azure'
|
2022-05-03 05:15:53 -04:00
|
|
|
default: 'gcp'
|
|
|
|
required: true
|
|
|
|
machineType:
|
|
|
|
description: 'VM machine type. Make sure it matches selected cloud provider!'
|
|
|
|
type: choice
|
|
|
|
options:
|
|
|
|
- 'n2d-standard-2' # GCP
|
|
|
|
- 'Standard_D4s_v3' # Azure
|
|
|
|
default: 'n2d-standard-2'
|
|
|
|
required: true
|
|
|
|
sonobuoyTestSuiteCmd:
|
|
|
|
description: 'Which tests should be run? Check README for guidance!'
|
|
|
|
default: '--mode quick'
|
|
|
|
required: true
|
|
|
|
jobs:
|
2022-05-09 03:45:59 -04:00
|
|
|
e2e-test-manual:
|
2022-05-03 05:15:53 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v3
|
2022-05-09 03:45:59 -04:00
|
|
|
- name: Run manual E2E test
|
|
|
|
uses: ./.github/actions/e2e_test
|
2022-05-04 07:52:27 -04:00
|
|
|
with:
|
2022-05-03 05:15:53 -04:00
|
|
|
workerNodesCount: ${{ github.event.inputs.workerNodesCount }}
|
|
|
|
controlNodesCount: ${{ github.event.inputs.controlNodesCount }}
|
2022-05-09 03:45:59 -04:00
|
|
|
autoscale: ${{ github.event.inputs.autoscale }}
|
|
|
|
cloudProvider: ${{ github.event.inputs.cloudProvider }}
|
2022-05-03 05:15:53 -04:00
|
|
|
machineType: ${{ github.event.inputs.machineType }}
|
2022-05-09 03:45:59 -04:00
|
|
|
gcp_service_account_json: ${{ secrets.GCP_SERVICE_ACCOUNT }}
|
|
|
|
azure_credentials: ${{ secrets.AZURE_E2E_CREDENTIALS }}
|
2022-05-03 05:15:53 -04:00
|
|
|
sonobuoyTestSuiteCmd: ${{ github.event.inputs.sonobuoyTestSuiteCmd }}
|
2022-05-09 03:45:59 -04:00
|
|
|
msTeamsWebhook: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}
|