yq v4 根据更深密钥的存在获取根密钥

时间:2021-04-15 12:13:06

标签: yaml yq

我有这个结构:

foo:
  image: 123

bar:
  image: 456

baz:
  config: "my config"

并且我想根据子“图像”的存在打印根键(即 foo、bar、baz)

在 yq 版本 3 中,我可以这样做:

$ yq read test.yaml --printMode p "*.image" | awk -F'.' '{print $1}'
foo
bar

但我在 v4 中找不到等价物。 yq + jq 解决方案是:

$ yq -j e test.yaml | jq -r 'to_entries[] | select(.value | has("image")) | [.key][]' 
foo
bar

知道如何使用 yq v4 做到这一点吗?

1 个答案:

答案 0 :(得分:1)

您可以使用 path operator 获取包含标签 image 的匹配对象的路径

yq e '.[] | select(has("image")) | path | .[]' yaml