From 0866c12f2fc94a24e78f573c43ac07b90f5e0c67 Mon Sep 17 00:00:00 2001 From: chainzero <82888608+chainzero@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:38:19 -0500 Subject: [PATCH] Update config.yaml --- charts/akash-inventory-operator/templates/config.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/charts/akash-inventory-operator/templates/config.yaml b/charts/akash-inventory-operator/templates/config.yaml index c184a2f0..070ae9bd 100644 --- a/charts/akash-inventory-operator/templates/config.yaml +++ b/charts/akash-inventory-operator/templates/config.yaml @@ -7,9 +7,11 @@ data: config.yaml: | version: v1 cluster_storage: - - default - - beta2 + {{- range .Values.inventoryConfig.cluster_storage }} + - {{ . }} + {{- end }} exclude: - nodes: [] - node_storage: [] + nodes: {{ .Values.inventoryConfig.exclude.nodes | toYaml | nindent 6 }} + node_storage: {{ .Values.inventoryConfig.exclude.node_storage | toYaml | nindent 6 }} +