Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "ci/e2e: add option to keep runner in scalability test" #819

Merged
merged 2 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/cli-rke2-scalability-rancher_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ name: CLI-RKE2-Scalability-Rancher_Stable
# the workflow on each push on main.
on:
workflow_dispatch:
inputs:
destroy_runner:
description: Destroy the auto-generated self-hosted runner
default: true
type: boolean
schedule:
# Every Sunday at 3am
- cron: '0 3 * * 0'
Expand All @@ -25,7 +20,6 @@ jobs:
with:
test_description: "CI/Manual - CLI - Scalability - Deployment test with Standard RKE2"
cluster_name: cluster-rke2
destroy_runner: ${{ inputs.destroy_runner && true }}
k8s_version_to_provision: v1.25.7+rke2r1
node_number: 100
rancher_version: stable/latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-k3s-os-upgrade-rancher_latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
cluster_name: cluster-k3s
cypress_tags: upgrade
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
iso_boot: true
k8s_version_to_provision: v1.25.7+k3s1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-k3s-os-upgrade-rancher_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
cluster_name: cluster-k3s
cypress_tags: upgrade
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
iso_to_test: https://download.opensuse.org/repositories/isv:/Rancher:/Elemental:/Stable:/Teal53/media/iso/elemental-teal.x86_64.iso
k8s_version_to_provision: v1.25.7+k3s1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-k3s-rancher_latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
test_description: "CI/Manual - UI - Deployment test with Standard K3s"
cluster_name: cluster-k3s
cypress_tags: main
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
k8s_version_to_provision: v1.25.7+k3s1
proxy: ${{ inputs.proxy || 'elemental' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-k3s-rancher_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
test_description: "CI/Manual - UI - Deployment test with Standard K3s"
cluster_name: cluster-k3s
cypress_tags: main
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
k8s_version_to_provision: v1.25.7+k3s1
proxy: ${{ inputs.proxy || 'elemental' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-rke2-os-upgrade-rancher_latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
ca_type: private
cluster_name: cluster-rke2
cypress_tags: upgrade
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
iso_boot: true
k8s_version_to_provision: v1.25.7+rke2r1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-rke2-os-upgrade-rancher_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
ca_type: private
cluster_name: cluster-rke2
cypress_tags: upgrade
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
iso_to_test: https://download.opensuse.org/repositories/isv:/Rancher:/Elemental:/Stable:/Teal53/media/iso/elemental-teal.x86_64.iso
k8s_version_to_provision: v1.25.7+rke2r1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-rke2-rancher_latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
ca_type: private
cluster_name: cluster-rke2
cypress_tags: main
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
k8s_version_to_provision: v1.25.7+rke2r1
rancher_version: ${{ inputs.rancher_version || 'latest/devel' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-rke2-rancher_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
ca_type: private
cluster_name: cluster-rke2
cypress_tags: main
destroy_runner: ${{ inputs.destroy_runner && true }}
destroy_runner: ${{ inputs.destroy_runner || true }}
elemental_ui_version: dev
k8s_version_to_provision: v1.25.7+rke2r1
rancher_version: ${{ inputs.rancher_version || 'stable/latest' }}
Expand Down