From 4049c27ecf4a8765eb556b45b9c7c44051bc3ae6 Mon Sep 17 00:00:00 2001 From: chgl Date: Mon, 29 Apr 2024 12:00:04 +0200 Subject: [PATCH] fix: bug with consecutive merges of spec in stream processors --- charts/stream-processors/Chart.yaml | 3 ++- charts/stream-processors/templates/deployment.yaml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/charts/stream-processors/Chart.yaml b/charts/stream-processors/Chart.yaml index 15223058..1780ef2b 100644 --- a/charts/stream-processors/Chart.yaml +++ b/charts/stream-processors/Chart.yaml @@ -8,7 +8,7 @@ keywords: - kafka - strimzi kafka operator - stream processing -version: 1.7.0-beta.1 +version: 1.7.0-beta.2 dependencies: - name: common version: 2.19.1 @@ -24,4 +24,5 @@ annotations: description: "option for persistence and running as a StatefulSet" - kind: added description: "mount /tmp as an emtpyDir by default" + - kind: changed description: "changed default ContainerSecurityContext to use default seccompProfile" diff --git a/charts/stream-processors/templates/deployment.yaml b/charts/stream-processors/templates/deployment.yaml index 60de6122..b577632c 100644 --- a/charts/stream-processors/templates/deployment.yaml +++ b/charts/stream-processors/templates/deployment.yaml @@ -1,5 +1,5 @@ -{{- range $name, $spec := .Values.processors }} -{{- $spec := mustMergeOverwrite $.Values.default $spec -}} +{{- range $name, $processor := .Values.processors }} +{{- $spec := mustMergeOverwrite $.Values.default $processor -}} {{- with $spec }} --- apiVersion: apps/v1