Skip to content

Commit

Permalink
Merge pull request #21 from lburgazzoli/dapr-1.11.3
Browse files Browse the repository at this point in the history
update dapr helm chart from v1.11.0 to v1.11.3
  • Loading branch information
salaboy authored Sep 7, 2023
2 parents 88c4e62 + fd5f72c commit ce8437d
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 12 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.11.0
HELM_CHART_VERSION ?= 1.11.3
HELM_CHART_URL ?= https://raw.githubusercontent.com/dapr/helm-charts/master/dapr-$(HELM_CHART_VERSION).tgz

## Tool Versions
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.11.0
appVersion: 1.11.3
description: A Helm chart for Dapr on Kubernetes
name: dapr
version: 1.11.0
version: 1.11.3
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.11.0
version: 1.11.3
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.11.0
version: 1.11.3
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.11.0
version: 1.11.3
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.11.0
version: 1.11.3
28 changes: 26 additions & 2 deletions helm-charts/dapr/charts/dapr_rbac/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ rules:
- apiGroups: ["apps"]
resources: ["deployments", "deployments/finalizers"]
verbs: ["get", "list", "watch"]
- apiGroups: ["apps"]
resources: ["deployments/finalizers"]
verbs: ["update"]
- apiGroups: ["apps"]
resources: ["statefulsets", "statefulsets/finalizers"]
verbs: ["get", "list", "watch"]
- apiGroups: ["apps"]
resources: ["statefulsets/finalizers"]
verbs: ["update"]
- apiGroups: [""]
resources: ["pods"]
{{- if .Values.global.operator.watchdogCanPatchPodLabels }}
Expand All @@ -36,6 +42,9 @@ rules:
- apiGroups: [""]
resources: ["services","services/finalizers"]
verbs: ["get", "list", "watch", "update", "create"]
- apiGroups: [""]
resources: ["services"]
verbs: ["delete"]
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "list", "watch"]
Expand All @@ -46,7 +55,10 @@ rules:
{{- if .Values.global.argoRolloutServiceReconciler.enabled }}
- apiGroups: ["argoproj.io"]
resources: ["rollouts"]
verbs: ["get", "list", "watch"]
verbs: ["get", "list", "watch", "delete"]
- apiGroups: ["argoproj.io"]
resources: ["rollouts/finalizers"]
verbs: ["update"]
{{- end }}
---
{{- if not .Values.global.rbac.namespaced }}
Expand Down Expand Up @@ -100,15 +112,24 @@ rules:
- apiGroups: ["apps"]
resources: ["deployments", "deployments/finalizers"]
verbs: ["get", "list", "watch"]
- apiGroups: ["apps"]
resources: ["deployments/finalizers"]
verbs: ["update"]
- apiGroups: ["apps"]
resources: ["statefulsets", "statefulsets/finalizers"]
verbs: ["get", "list", "watch"]
- apiGroups: ["apps"]
resources: ["statefulsets/finalizers"]
verbs: ["update"]
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list", "delete"]
- apiGroups: [""]
resources: ["services","services/finalizers"]
verbs: ["get", "list", "watch", "update", "create"]
- apiGroups: [""]
resources: ["services"]
verbs: ["delete"]
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "list", "watch"]
Expand All @@ -119,7 +140,10 @@ rules:
{{- if .Values.global.argoRolloutServiceReconciler.enabled }}
- apiGroups: ["argoproj.io"]
resources: ["rollouts"]
verbs: ["get", "list", "watch"]
verbs: ["get", "list", "watch", "delete"]
- apiGroups: ["argoproj.io"]
resources: ["rollouts/finalizers"]
verbs: ["update"]
{{- end }}
---
kind: RoleBinding
Expand Down
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.11.0
version: 1.11.3
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.11.0
version: 1.11.3
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: docker.io/daprio
tag: '1.11.0'
tag: '1.11.3'
dnsSuffix: ".cluster.local"
logAsJson: false
imagePullPolicy: IfNotPresent
Expand Down

0 comments on commit ce8437d

Please sign in to comment.