From 17e6c738067be18efae696c4c1d24ba733066dff Mon Sep 17 00:00:00 2001 From: Jorden_Reuter <149687553+JordenReuter@users.noreply.github.com> Date: Tue, 4 Nov 2025 10:10:19 +0100 Subject: [PATCH] feat: added multitenancy flag support --- templates/product-info.yaml | 3 +++ values.yaml | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/product-info.yaml b/templates/product-info.yaml index e3d3da7..ed6b904 100644 --- a/templates/product-info.yaml +++ b/templates/product-info.yaml @@ -27,5 +27,8 @@ spec: {{- if .Values.info.data.classifications }} classifications: {{ .Values.info.data.classifications | toYaml | nindent 4 }} {{- end }} + {{- if .Values.info.data.multitenancy }} + multitenancy: {{ .Values.info.data.multitenancy }} + {{- end }} {{- end }} {{- end }} \ No newline at end of file diff --git a/values.yaml b/values.yaml index 14ae46c..659fccb 100644 --- a/values.yaml +++ b/values.yaml @@ -24,4 +24,6 @@ info: # product provider provider: # product classifications list - classifications: [] \ No newline at end of file + classifications: [] + # product multi-tenancy capability + multitenancy: \ No newline at end of file