menuconfig.yaml
---
common:
menubar:
- id: "1"
title: "common"
type:
menubar:
- id: "3"
- id: "4"
state:
menubar:
- id: "5"
- id: "6"
My yaml file looks like above and I need to merge all the menubar list to one in menubar list like below
---
menubar:
- id: "1"
title: "common"
- id: "3"
- id: "4"
- id: "5"
- id: "6"
My sample code looks above. I have tried to append or join two list as one and I have tried with join and append .
helm lint menulist/ works fine but join not happening while dry-run the same
Please check and let me know whether we can merge two list using template functions in helm. Plesae comment if you need more informations. Thanks in advance.