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 }} +