Skip to content

Commit 0f952d0

Browse files
committed
feat(extraObjects): supported extraobjects in lm-container
1 parent 7ff96cf commit 0f952d0

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{{- if .Values.extraObjects }}
2+
{{- range $index, $object := .Values.extraObjects }}
3+
---
4+
{{ toYaml $object | nindent 0 }}
5+
{{- end }}
6+
{{- end }}

charts/lm-container/values.schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,12 @@
241241
},
242242
"additionalProperties": true
243243
}
244+
},
245+
"extraObjects": {
246+
"$id": "#/properties/extraObjects",
247+
"type": "array",
248+
"additionalProperties": true,
249+
"properties": {}
244250
}
245251
}
246252
}

0 commit comments

Comments
 (0)