Skip to content

Commit

Permalink
fix: bug with consecutive merges of spec in stream processors
Browse files Browse the repository at this point in the history
  • Loading branch information
chgl authored Apr 29, 2024
1 parent def759f commit 4049c27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion charts/stream-processors/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
4 changes: 2 additions & 2 deletions charts/stream-processors/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4049c27

Please sign in to comment.