head/2.12 on v1.32.4+k3s1 - @login destroy=true
#540
Workflow file for this run
This file contains hidden or 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 calls the master E2E workflow with custom variables | |
| name: UI-rm-hardening-tests | |
| run-name: ${{ github.event_name == 'workflow_dispatch' && format('`{0}` on `{1}` - `{2}` destroy={3}', inputs.rancher_version, inputs.upstream_cluster_version, inputs.grep_test_by_tag, inputs.destroy_runner) || github.workflow }} | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| qase_run_id: | |
| description: Qase run ID where the results will be reported | |
| default: auto | |
| type: string | |
| destroy_runner: | |
| description: Destroy the auto-generated self-hosted runner | |
| default: true | |
| type: boolean | |
| rancher_version: | |
| description: Rancher version channel/version/head_version latest/latest, latest/2.11.x[-rc1], prime/2.11.x, prime/devel/2.11, alpha/2.11.0-alpha1 | |
| default: head/2.12 | |
| type: string | |
| required: true | |
| upstream_cluster_version: | |
| description: K3s upstream cluster version where to install Rancher | |
| default: 'v1.32.4+k3s1' | |
| type: string | |
| required: true | |
| hardening: | |
| description: Select if desired hardened cluster (if 'true' use only @login @hardening-tests) | |
| required: false | |
| type: boolean | |
| default: true | |
| grep_test_by_tag: | |
| description: Grep tags. For hardened tests, use @hardening-tests Keep always @login | |
| required: false | |
| type: string | |
| default: '@login' | |
| jobs: | |
| ui: | |
| uses: ./.github/workflows/master-e2e.yaml | |
| secrets: | |
| credentials: ${{ secrets.GCP_CREDENTIALS }} | |
| pat_token: ${{ secrets.SELF_HOSTED_RUNNER_PAT_TOKEN }} | |
| rancher_password: ${{ secrets.RANCHER_PASSWORD }} | |
| gitlab_private_user: ${{ secrets.GITLAB_PRIVATE_USER }} | |
| gitlab_private_pwd: ${{ secrets.GITLAB_PRIVATE_PWD }} | |
| bitbucket_private_user: ${{ secrets.BITBUCKET_PRIVATE_USER }} | |
| bitbucket_private_pwd: ${{ secrets.BITBUCKET_PRIVATE_PWD }} | |
| gh_private_user: ${{ secrets.GH_PRIVATE_USER }} | |
| gh_private_pwd: ${{ secrets.GH_PRIVATE_PWD }} | |
| azure_private_user: ${{ secrets.AZURE_PRIVATE_USER }} | |
| azure_private_pwd: ${{ secrets.AZURE_PRIVATE_PWD }} | |
| rsa_private_key_qa: ${{ secrets.RSA_PRIVATE_KEY_QA }} | |
| rsa_public_key_qa: ${{ secrets.RSA_PUBLIC_KEY_QA }} | |
| qase_api_token: ${{ secrets.QASE_API_TOKEN }} | |
| with: | |
| test_description: "CI/Manual - UI - Deployment test with hardened rke2 cluster" | |
| cluster_name: hardened-rke2-cluster | |
| # WARNING, VALUES BELOW ARE HARDCODED FOR RUNS SCHEDULED BY CRON | |
| destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }} | |
| upstream_cluster_version: ${{ inputs.upstream_cluster_version || 'v1.32.4+k3s1' }} | |
| rancher_version: ${{ inputs.rancher_version || 'head/2.12' }} | |
| qase_run_id: ${{ inputs.qase_run_id || 'auto' }} | |
| hardening: ${{ inputs.hardening || 'false' }} | |
| grep_test_by_tag: ${{ inputs.grep_test_by_tag || '@login' }} |