mirror of https://github.com/dapr/cli.git
Update runtime to 1.3.0 (#767)
* Update runtime to 1.3 RC1 * Fix dashboard rc version * Change to 1.3.0-rc.2 runtime * change e2e tests to latest version
This commit is contained in:
parent
2bf6253e12
commit
fa146ee630
|
@ -14,8 +14,8 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
currentRuntimeVersion = "1.2.0"
|
||||
currentDashboardVersion = "0.6.0"
|
||||
currentRuntimeVersion = "1.3.0"
|
||||
currentDashboardVersion = "0.7.0"
|
||||
)
|
||||
|
||||
var currentVersionDetails = common.VersionDetails{
|
||||
|
|
|
@ -32,8 +32,8 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
daprRuntimeVersion = "1.2.0"
|
||||
daprDashboardVersion = "0.6.0"
|
||||
daprRuntimeVersion = "1.3.0"
|
||||
daprDashboardVersion = "0.7.0"
|
||||
)
|
||||
|
||||
func TestStandaloneInstall(t *testing.T) {
|
||||
|
|
|
@ -71,15 +71,15 @@ var (
|
|||
},
|
||||
{
|
||||
previous: common.VersionDetails{
|
||||
RuntimeVersion: "1.1.0",
|
||||
RuntimeVersion: "1.2.0",
|
||||
DashboardVersion: "0.6.0",
|
||||
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
|
||||
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
|
||||
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"},
|
||||
},
|
||||
next: common.VersionDetails{
|
||||
RuntimeVersion: "1.2.0",
|
||||
DashboardVersion: "0.6.0",
|
||||
RuntimeVersion: "1.3.0",
|
||||
DashboardVersion: "0.7.0",
|
||||
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
|
||||
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
|
||||
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"},
|
||||
|
@ -87,15 +87,15 @@ var (
|
|||
},
|
||||
{
|
||||
previous: common.VersionDetails{
|
||||
RuntimeVersion: "1.1.1",
|
||||
RuntimeVersion: "1.2.2",
|
||||
DashboardVersion: "0.6.0",
|
||||
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
|
||||
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
|
||||
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"},
|
||||
},
|
||||
next: common.VersionDetails{
|
||||
RuntimeVersion: "1.2.0",
|
||||
DashboardVersion: "0.6.0",
|
||||
RuntimeVersion: "1.3.0",
|
||||
DashboardVersion: "0.7.0",
|
||||
ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"},
|
||||
ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},
|
||||
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"},
|
||||
|
|
Loading…
Reference in New Issue