我正试图将一个映射添加到ytt中的映射数组中,以修改YAML文档。
我尝试了下面的方法,但它出错了,说它需要一个地图,但得到了一个数组。
https://gist.github.com/amalagaura/c8b5c7c92402120ed76dec95dfafb276
---
id: 1
type: book
awards:
books:
- id: 1
title: International Botev
reviewers:
- id: 2
name: PersonB
- id: 2
title: Dayton Literary Peace Prize
reviewers:
- id: 3
name: PersonC
#! How do I add a map to an array of maps?
#@ load("@ytt:overlay", "overlay")
#@overlay/match by=overlay.all
---
awards:
books:
#@overlay/match by=overlay.all, expects="1+"
#@overlay/match missing_ok=True
reviewers:
#@overlay/append
- id: 1
name: PersonA
#@ load("@ytt:overlay", "overlay")
#! Add a map to an array of maps:
#@overlay/match by=overlay.all
---
awards:
books:
#@overlay/match by=overlay.all, expects="1+"
- reviewers:
#@overlay/append
- id: 1
name: Person A
您的解决方案非常接近,您真正需要的只是使reviewers
成为一个数组项。如果你想为没有该密钥的书添加审阅者,那么你必须在数组项目和地图项目上添加匹配器;下面包含了一个要点,以查看此行为覆盖的作用。如果同一项目上有多个#@overlay/match
注释,则最后一个注释获胜。有计划改善这种行为:https://github.com/k14s/ytt/issues/114.
https://get-ytt.io/#gist:https://gist.github.com/gcheadle-vmware/a624ee73fa5cc139dba870690eb15c5