Skip to content

Commit f40ef70

Browse files
chore(ci): streamline k0s release process (#2679)
* chore(ci): streamline k0s release process * Update Makefile versions (#2714) Co-authored-by: emosbaugh <[email protected]> * f * f * f * feedback * merge mistake * package version unneeded * Update Makefile versions (#2740) Co-authored-by: emosbaugh <[email protected]> * f * f * f * f * f --------- Co-authored-by: replicated-ci-ec <[email protected]> Co-authored-by: emosbaugh <[email protected]>
1 parent 445ac75 commit f40ef70

40 files changed

+1050
-431
lines changed

.github/actions/e2e/action.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ inputs:
1313
k0s-version:
1414
description: 'k0s version to expect in e2e tests'
1515
required: true
16-
k0s-version-previous:
17-
description: 'k0s previous version to expect in e2e tests'
16+
k0s-version-previous-1:
17+
description: 'k0s previous (minor-1) version to expect in e2e tests'
18+
required: true
19+
k0s-version-previous-2:
20+
description: 'k0s previous (minor-2) version to expect in e2e tests'
21+
required: true
22+
k0s-version-previous-3:
23+
description: 'k0s previous (minor-3) version to expect in e2e tests'
1824
required: true
1925
k0s-version-previous-stable:
2026
description: 'k0s previous stable version to expect in e2e tests'
@@ -69,7 +75,9 @@ runs:
6975
export DR_ACCESS_KEY_ID=${{ inputs.dr-aws-access-key-id }}
7076
export DR_SECRET_ACCESS_KEY=${{ inputs.dr-aws-secret-access-key }}
7177
export EXPECT_K0S_VERSION=${{ inputs.k0s-version }}
72-
export EXPECT_K0S_VERSION_PREVIOUS=${{ inputs.k0s-version-previous }}
78+
export EXPECT_K0S_VERSION_PREVIOUS_1=${{ inputs.k0s-version-previous-1 }}
79+
export EXPECT_K0S_VERSION_PREVIOUS_2=${{ inputs.k0s-version-previous-2 }}
80+
export EXPECT_K0S_VERSION_PREVIOUS_3=${{ inputs.k0s-version-previous-3 }}
7381
export EXPECT_K0S_VERSION_PREVIOUS_STABLE=${{ inputs.k0s-version-previous-stable }}
7482
export EXPECT_EMBEDDED_CLUSTER_UPGRADE_TARGET_VERSION=${{ inputs.upgrade-target-ec-version }}
7583
export CMX_SSH_PUBLIC_KEY="$HOME/.ssh/id_rsa.pub"

0 commit comments

Comments
 (0)