Skip to content

Commit

Permalink
Bump control plane to 1.28 for e2e
Browse files Browse the repository at this point in the history
Signed-off-by: Shiming Zhang <[email protected]>
  • Loading branch information
wzshiming committed Oct 7, 2023
1 parent 8800f1b commit 6144a9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions test/environments/default.env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ source "$(dirname "${BASH_SOURCE[0]}")/../helper.sh"

function cleanup() {
"${ROOT}/hack/clean-clusterconfigs.sh" >/dev/null 2>&1
delete_data_plane data-v1-23 >/dev/null 2>&1
delete_control_plane control-v1-23 >/dev/null 2>&1
delete_data_plane data-v1-28 >/dev/null 2>&1
delete_control_plane control-v1-28 >/dev/null 2>&1
}
trap cleanup EXIT

create_control_plane control-v1-23 v1.23.4 || {
create_control_plane control-v1-28 v1.28.0 || {
echo "Failed to create control plane"
exit 1
}
create_data_plane data-v1-23 v1.23.4 || {
create_data_plane data-v1-28 v1.28.2 || {
echo "Failed to create data plane"
exit 1
}
Expand Down
4 changes: 2 additions & 2 deletions test/environments/multiple.env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ function cleanup() {
for release in "${releases[@]}"; do
delete_data_plane "data-${release//./-}" >/dev/null 2>&1
done
delete_control_plane control-v1-23 >/dev/null 2>&1
delete_control_plane control-v1-28 >/dev/null 2>&1
}
trap cleanup EXIT

create_control_plane control-v1-23 v1.23.4 || {
create_control_plane control-v1-28 v1.28.0 || {
echo "Failed to create control plane"
exit 1
}
Expand Down

0 comments on commit 6144a9d

Please sign in to comment.