使用 yq 按键过滤 Yaml 文档

问题描述 投票:0回答:1

我想按特定键过滤文档列表。

我有 helm 模板的输出,它很大,我只想看看在哪里

kind: Pod

kubernetes-helm yq
1个回答
1
投票
helm template . | yq '. | select(.kind == "Pod")'

参考:https://github.com/mikefarah/yq/issues/513#issuecomment-847883445

© www.soinside.com 2019 - 2024. All rights reserved.