Skip to content

Commit

Permalink
Merge pull request #118 from lburgazzoli/dapr-1.13.2
Browse files Browse the repository at this point in the history
Upgrade dapr to 1.13.2
  • Loading branch information
lburgazzoli authored Apr 8, 2024
2 parents 78708bb + d23b27b commit f70f769
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LOCALBIN := $(PROJECT_PATH)/bin

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

OPENSHIFT_VERSIONS ?= v4.13-v4.15
Expand Down
4 changes: 2 additions & 2 deletions helm-charts/dapr/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 1.13.1
appVersion: 1.13.2
description: A Helm chart for Dapr on Kubernetes
name: dapr
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/charts/dapr_config/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr configuration
name: dapr_config
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/charts/dapr_operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Kubernetes Operator
name: dapr_operator
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/charts/dapr_placement/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Kubernetes placement
name: dapr_placement
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/charts/dapr_rbac/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Kubernetes RBAC components
name: dapr_rbac
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/charts/dapr_sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Sentry
name: dapr_sentry
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/charts/dapr_sidecar_injector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for the Dapr sidecar injector
name: dapr_sidecar_injector
version: 1.13.1
version: 1.13.2
2 changes: 1 addition & 1 deletion helm-charts/dapr/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
global:
registry: ghcr.io/dapr
tag: '1.13.1'
tag: '1.13.2'
dnsSuffix: ".cluster.local"
logAsJson: false
imagePullPolicy: IfNotPresent
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/operator/dapr_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func TestDaprInstanceDeployWithDefaults(t *testing.T) {
WithTransform(AsJSON(), And(
MatchJQ(`.status.chart.name == "dapr"`),
MatchJQ(`.status.chart.repo == "embedded"`),
MatchJQ(`.status.chart.version == "1.13.1"`),
MatchJQ(`.status.chart.version == "1.13.2"`),
)),
)
}
Expand Down Expand Up @@ -116,7 +116,7 @@ func TestDaprInstanceDeployWithCustomSidecarImage(t *testing.T) {
WithTransform(AsJSON(), And(
MatchJQ(`.status.chart.name == "dapr"`),
MatchJQ(`.status.chart.repo == "embedded"`),
MatchJQ(`.status.chart.version == "1.13.1"`),
MatchJQ(`.status.chart.version == "1.13.2"`),
)),
)

Expand Down Expand Up @@ -162,7 +162,7 @@ func TestDaprInstanceDeployWithApp(t *testing.T) {
WithTransform(AsJSON(), And(
MatchJQ(`.status.chart.name == "dapr"`),
MatchJQ(`.status.chart.repo == "embedded"`),
MatchJQ(`.status.chart.version == "1.13.1"`),
MatchJQ(`.status.chart.version == "1.13.2"`),
)),
)

Expand Down

0 comments on commit f70f769

Please sign in to comment.