Skip to content

Commit 2e4fa51

Browse files
Add extraContainers support for sidecar injection (#206)
- The chart currently supports extraVolumes, extraVolumeMounts, and extraEnvVars but has no way to inject additional containers into the pod spec. - This adds an extraContainers parameter (empty by default) following the same convention, enabling sidecar use cases like Fluent Bit for CloudWatch log shipping.
1 parent a64d856 commit 2e4fa51

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

charts/intel/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: codetogether-intel
33
description: CodeTogether Intel provides advanced project insights for developers
44

55
type: application
6-
version: 1.3.2
6+
version: 1.3.4
77
appVersion: "2026.1.2"
88

99
icon: https://www.codetogether.com/wp-content/uploads/2020/02/codetogether-circle-128.png

charts/intel/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,9 @@ spec:
175175
{{- toYaml .Values.ai.resources | nindent 12 }}
176176
{{- end }}
177177
{{- end }}
178+
{{- with .Values.extraContainers }}
179+
{{- toYaml . | nindent 8 }}
180+
{{- end }}
178181
volumes:
179182
- name: properties-volume
180183
secret:

charts/intel/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,4 +220,6 @@ extraVolumes: []
220220
# subPath: config.yaml
221221
extraVolumeMounts: []
222222

223+
extraContainers: []
224+
223225
replicaCount: 1

0 commit comments

Comments
 (0)