Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion templates/product-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
4 changes: 3 additions & 1 deletion tests/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
2 changes: 2 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ info:
displayName: default display name
# product base path
basePath:
# product provider
provider:
# product classifications list
classifications: []