Skip to content

Commit 785bc51

Browse files
authored
Upgrade test for 1.4.4 and 1.5.1 releases (#846)
* Run tests against new hotfix releases * Update e2e test for latest runtime releases
1 parent 6b13457 commit 785bc51

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/e2e/kubernetes/kubernetes_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
const (
18-
currentRuntimeVersion = "1.5.0"
18+
currentRuntimeVersion = "1.5.1"
1919
currentDashboardVersion = "0.9.0"
2020
)
2121

tests/e2e/standalone/standalone_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
)
3434

3535
const (
36-
daprRuntimeVersion = "1.5.0"
36+
daprRuntimeVersion = "1.5.1"
3737
daprDashboardVersion = "0.9.0"
3838
)
3939

tests/e2e/upgrade/upgrade_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ var supportedUpgradePaths = []upgradePath{
3939
},
4040
{
4141
previous: common.VersionDetails{
42-
RuntimeVersion: "1.4.3",
42+
RuntimeVersion: "1.4.4",
4343
DashboardVersion: "0.8.0",
4444
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
4545
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
4646
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"},
4747
},
4848
next: common.VersionDetails{
49-
RuntimeVersion: "1.5.0",
49+
RuntimeVersion: "1.5.1",
5050
DashboardVersion: "0.9.0",
5151
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
5252
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
@@ -56,14 +56,14 @@ var supportedUpgradePaths = []upgradePath{
5656
// test downgrade
5757
{
5858
previous: common.VersionDetails{
59-
RuntimeVersion: "1.5.0",
59+
RuntimeVersion: "1.5.1",
6060
DashboardVersion: "0.9.0",
6161
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
6262
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
6363
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"},
6464
},
6565
next: common.VersionDetails{
66-
RuntimeVersion: "1.4.3",
66+
RuntimeVersion: "1.4.4",
6767
DashboardVersion: "0.8.0",
6868
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
6969
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},

0 commit comments

Comments
 (0)