From 5ac052ca5f6501e60cf4a490ba7d282ecf3a5f5d Mon Sep 17 00:00:00 2001 From: Aditya Choudhari <48932219+adityachoudhari26@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:04:39 -0800 Subject: [PATCH] chore: Pass binary directly (#86) --- charts/operator/Chart.yaml | 2 +- charts/operator/templates/configmap.yaml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/charts/operator/Chart.yaml b/charts/operator/Chart.yaml index 2e792e67..1c692ca0 100644 --- a/charts/operator/Chart.yaml +++ b/charts/operator/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: operator description: A Helm chart for Weights & Biases operator type: application -version: 1.1.1 +version: 1.1.2 appVersion: "1.0.0" maintainers: - name: wandb diff --git a/charts/operator/templates/configmap.yaml b/charts/operator/templates/configmap.yaml index c47489ca..93c64f6c 100644 --- a/charts/operator/templates/configmap.yaml +++ b/charts/operator/templates/configmap.yaml @@ -3,6 +3,4 @@ kind: ConfigMap metadata: name: {{ include "name" . }}-charts data: - {{- range $name, $chart := .Values.charts }} - {{ $name }}.b64: {{ $.Files.Get $chart.path | b64enc }} - {{- end }} + {{- toYaml .Values.charts | nindent 2 }}