我有一个yaml文件(config.yaml),它的标签/结构与下面提到的类似。我需要向现有租户列表中添加一个新租户(tenant 3)。我如何使用pipeline/groovy脚本来实现这一点呢?任何帮助/引导都将不胜感激。
consumer_services:
- security
- token
id: 10000
tenants:
tenant_1:
state: all
web_token: true
cluster_pairs:
- cluster1
datacenter: local
client: CLIENT_TEST
tenant_2:
state: all
web_token: true
cluster_pairs:
- cluster2
datacenter: local
client: CLIENT_TEST
base_network:
subnets:
- 10.160.10.10
- 10.179.1.09
1条答案
按热度按时间hgncfbus1#
我认为你需要做这样的事情:
因此,步骤如下:
1.将数据从文件加载到内存中
1.以您喜欢的方式修改结构
1.将修改后的结构存储到文件中
我希望这会有所帮助。