diff --git a/templates/product-info.yaml b/templates/product-info.yaml index 6ba02c5..e3d3da7 100644 --- a/templates/product-info.yaml +++ b/templates/product-info.yaml @@ -21,8 +21,11 @@ spec: {{- if .Values.info.data.basePath }} basePath: {{ .Values.info.data.basePath }} {{- end }} + {{- if .Values.info.data.provider }} + provider: {{ .Values.info.data.provider }} + {{- end }} {{- if .Values.info.data.classifications }} - classifications: {{ .Values.info.data.classifications }} + classifications: {{ .Values.info.data.classifications | toYaml | nindent 4 }} {{- end }} {{- end }} {{- end }} \ No newline at end of file diff --git a/tests/values.yaml b/tests/values.yaml index dcbbcc7..bb24732 100644 --- a/tests/values.yaml +++ b/tests/values.yaml @@ -19,5 +19,7 @@ info: displayName: default display name # product base path basePath: path + # product provider + provider: test # product classifications list - classifications: [] + classifications: [class1, class2] diff --git a/values.yaml b/values.yaml index 4f0aed9..14ae46c 100644 --- a/values.yaml +++ b/values.yaml @@ -21,5 +21,7 @@ info: displayName: default display name # product base path basePath: + # product provider + provider: # product classifications list classifications: [] \ No newline at end of file