Skip to content

Commit

Permalink
ci/debug: force execution of new workflows to validate them
Browse files Browse the repository at this point in the history
Signed-off-by: Loic Devulder <ldevulder@suse.com>
  • Loading branch information
ldevulder committed Nov 3, 2023
1 parent f9e81b2 commit b58fa8c
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/cli-k3s-reset-rm_head_2.7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name: CLI-K3s-Reset-RM_head_2.7

on:
# !! DEBUG !!
pull_request:
# !! DEBUG !!
workflow_dispatch:
inputs:
destroy_runner:
Expand All @@ -21,7 +24,10 @@ jobs:
with:
test_description: "CI - CLI - Parallel - Deployment test + reset with Standard K3s"
cluster_name: cluster-k3s
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
# !! DEBUG !!
#destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
destroy_runner: true
# !! DEBUG !!
k8s_version_to_provision: v1.26.8+k3s1
rancher_version: latest/devel/2.7
reset: true
8 changes: 7 additions & 1 deletion .github/workflows/cli-k3s-reset-rm_head_2.8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name: CLI-K3s-Reset-RM_head_2.8

on:
# !! DEBUG !!
pull_request:
# !! DEBUG !!
workflow_dispatch:
inputs:
destroy_runner:
Expand All @@ -21,7 +24,10 @@ jobs:
with:
test_description: "CI - CLI - Parallel - Deployment test + reset with Standard K3s"
cluster_name: cluster-k3s
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
# !! DEBUG !!
#destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
destroy_runner: true
# !! DEBUG !!
k8s_version_to_provision: v1.26.8+k3s1
rancher_version: latest/devel/2.8
reset: true
8 changes: 7 additions & 1 deletion .github/workflows/cli-k3s-reset-rm_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name: CLI-K3s-Reset-RM_Stable

on:
# !! DEBUG !!
pull_request:
# !! DEBUG !!
workflow_dispatch:
inputs:
destroy_runner:
Expand All @@ -21,6 +24,9 @@ jobs:
with:
test_description: "CI - CLI - Parallel - Deployment test + reset with Standard K3s"
cluster_name: cluster-k3s
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
# !! DEBUG !!
#destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
destroy_runner: true
# !! DEBUG !!
k8s_version_to_provision: v1.26.8+k3s1
reset: true
8 changes: 7 additions & 1 deletion .github/workflows/cli-rke2-reset-rm_head_2.7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name: CLI-RKE2-Reset-RM_head_2.7

on:
# !! DEBUG !!
pull_request:
# !! DEBUG !!
workflow_dispatch:
inputs:
destroy_runner:
Expand All @@ -22,7 +25,10 @@ jobs:
test_description: "CI - CLI - Parallel - Deployment test + reset with Standard RKE2"
ca_type: private
cluster_name: cluster-rke2
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
# !! DEBUG !!
#destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
destroy_runner: true
# !! DEBUG !!
k8s_version_to_provision: v1.26.8+rke2r1
rancher_version: latest/devel/2.7
upstream_cluster_version: v1.26.8+rke2r1
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/cli-rke2-reset-rm_head_2.8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name: CLI-RKE2-Reset-RM_head_2.8

on:
# !! DEBUG !!
pull_request:
# !! DEBUG !!
workflow_dispatch:
inputs:
destroy_runner:
Expand All @@ -22,7 +25,10 @@ jobs:
test_description: "CI - CLI - Parallel - Deployment test + reset with Standard RKE2"
ca_type: private
cluster_name: cluster-rke2
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
# !! DEBUG !!
#destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
destroy_runner: true
# !! DEBUG !!
k8s_version_to_provision: v1.26.8+rke2r1
rancher_version: latest/devel/2.8
upstream_cluster_version: v1.26.8+rke2r1
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/cli-rke2-reset-rm_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name: CLI-RKE2-Reset-RM_Stable

on:
# !! DEBUG !!
pull_request:
# !! DEBUG !!
workflow_dispatch:
inputs:
destroy_runner:
Expand All @@ -22,7 +25,10 @@ jobs:
test_description: "CI - CLI - Parallel - Deployment test + reset with Standard RKE2"
ca_type: private
cluster_name: cluster-rke2
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
# !! DEBUG !!
#destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }}
destroy_runner: true
# !! DEBUG !!
k8s_version_to_provision: v1.26.8+rke2r1
upstream_cluster_version: v1.26.8+rke2r1
reset: true

0 comments on commit b58fa8c

Please sign in to comment.