使用 yq v4.x 在 yaml 文件中插入多行一个属性

Insert multiple lines of one attribute in yaml file with yq v4.x

input.yaml 中存储了一个动态属性,我想将其插入到现有的 yaml 文件(名为 original.yaml)中。该属性有多行。

这两个文件看起来像: input.yaml:

- name: bob
  spec: {}

original.yaml:

spec:
    names:
      - name: alice
        spec: {}

我的目标是将 input.yaml 内容放在 original.yaml spec.names 下。 我试过 yq 版本 4:

env=$(cat input.yaml)
yq eval '.spec.names + strenv(env)' original.yaml > result.yaml

我得到的:

spec:
  names:
    - name: alice
      spec: {}
    - |-
      - name: bob
        spec: {}

第 5 行有一个不需要的 - |-,我希望得到以下输出:

spec:
  names:
    - name: alice
      spec: {}
    - name: bob
      spec: {}

如有任何建议,我们将不胜感激。

这个想法是对的,但你不应该使用 strenv() 函数,它将你的输入格式化为 YAML 字符串类型。您的 names 记录是一组映射,因此您需要保留原始类型,只需使用 env

因此,有了它并避免 cat 并使用 shell 输入重定向(应该在 bash/zsh/ksh 上工作),你可以做到

item="$(< input.yaml)" yq e '.spec.names += env(item)' original.yaml