Skip to content

Commit f70f769

Browse files
authored
Merge pull request #118 from lburgazzoli/dapr-1.13.2
Upgrade dapr to 1.13.2
2 parents 78708bb + d23b27b commit f70f769

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ LOCALBIN := $(PROJECT_PATH)/bin
2222

2323
HELM_CHART_REPO ?= https://dapr.github.io/helm-charts
2424
HELM_CHART ?= dapr
25-
HELM_CHART_VERSION ?= 1.13.1
25+
HELM_CHART_VERSION ?= 1.13.2
2626
HELM_CHART_URL ?= https://raw.githubusercontent.com/dapr/helm-charts/master/dapr-$(HELM_CHART_VERSION).tgz
2727

2828
OPENSHIFT_VERSIONS ?= v4.13-v4.15

helm-charts/dapr/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: 1.13.1
2+
appVersion: 1.13.2
33
description: A Helm chart for Dapr on Kubernetes
44
name: dapr
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/charts/dapr_config/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Dapr configuration
44
name: dapr_config
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/charts/dapr_operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Dapr Kubernetes Operator
44
name: dapr_operator
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/charts/dapr_placement/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Dapr Kubernetes placement
44
name: dapr_placement
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/charts/dapr_rbac/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Dapr Kubernetes RBAC components
44
name: dapr_rbac
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/charts/dapr_sentry/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Dapr Sentry
44
name: dapr_sentry
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/charts/dapr_sidecar_injector/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for the Dapr sidecar injector
44
name: dapr_sidecar_injector
5-
version: 1.13.1
5+
version: 1.13.2

helm-charts/dapr/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
global:
22
registry: ghcr.io/dapr
3-
tag: '1.13.1'
3+
tag: '1.13.2'
44
dnsSuffix: ".cluster.local"
55
logAsJson: false
66
imagePullPolicy: IfNotPresent

test/e2e/operator/dapr_instance_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func TestDaprInstanceDeployWithDefaults(t *testing.T) {
4646
WithTransform(AsJSON(), And(
4747
MatchJQ(`.status.chart.name == "dapr"`),
4848
MatchJQ(`.status.chart.repo == "embedded"`),
49-
MatchJQ(`.status.chart.version == "1.13.1"`),
49+
MatchJQ(`.status.chart.version == "1.13.2"`),
5050
)),
5151
)
5252
}
@@ -116,7 +116,7 @@ func TestDaprInstanceDeployWithCustomSidecarImage(t *testing.T) {
116116
WithTransform(AsJSON(), And(
117117
MatchJQ(`.status.chart.name == "dapr"`),
118118
MatchJQ(`.status.chart.repo == "embedded"`),
119-
MatchJQ(`.status.chart.version == "1.13.1"`),
119+
MatchJQ(`.status.chart.version == "1.13.2"`),
120120
)),
121121
)
122122

@@ -162,7 +162,7 @@ func TestDaprInstanceDeployWithApp(t *testing.T) {
162162
WithTransform(AsJSON(), And(
163163
MatchJQ(`.status.chart.name == "dapr"`),
164164
MatchJQ(`.status.chart.repo == "embedded"`),
165-
MatchJQ(`.status.chart.version == "1.13.1"`),
165+
MatchJQ(`.status.chart.version == "1.13.2"`),
166166
)),
167167
)
168168

0 commit comments

Comments
 (0)