From 7ac826a2f5c72a4ae7275d666a3bb2b8c054dbb8 Mon Sep 17 00:00:00 2001 From: trajan0x <83933037+trajan0x@users.noreply.github.com> Date: Thu, 20 Jun 2024 19:59:38 -0400 Subject: [PATCH] extracontainers (#2759) Co-authored-by: Trajan0x --- charts/cctp/Chart.yaml | 2 +- charts/cctp/templates/deployment.yaml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/charts/cctp/Chart.yaml b/charts/cctp/Chart.yaml index 2019e77684..7184346a8f 100644 --- a/charts/cctp/Chart.yaml +++ b/charts/cctp/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.2 +version: 0.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/cctp/templates/deployment.yaml b/charts/cctp/templates/deployment.yaml index 2aab897082..20273ca48a 100644 --- a/charts/cctp/templates/deployment.yaml +++ b/charts/cctp/templates/deployment.yaml @@ -57,6 +57,9 @@ spec: volumeMounts: - name: configmap mountPath: /config + {{- if .extraContainers }} + {{- toYaml .extraContainers | nindent 8 }} + {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}