使用 yq 更新 yaml 数组
update yaml array using yq
我有以下要替换命令字段的 yaml
有
apiVersion: batch/v1
kind: Job
metadata:
name: test004
spec:
template:
spec:
containers:
- name: "eee"
image: "test"
command: ["a", "b", "c"]
想要
apiVersion: batch/v1
kind: Job
metadata:
name: test004
spec:
template:
spec:
containers:
- name: "eee"
image: "test"
command: ["a", "b", "c", "d"]
yq -i n --style myfile.yaml 'spec.template.spec.containers[0].command' "["a", "b", "c","d"]"
有没有办法用 wq 实现这个,我尝试使用样式但没有成功,如果我将它更改为简单字符串它可以工作,但是当我想传递完整数组时不行,知道吗?
您可以使用字段 [+]
表示法 append fields in yq v3。所以你的命令结果是
yq --style double w -i myfile.yaml 'spec.template.spec.containers[0].command[+]' "c"
以上命令将条目 "c"
附加到数组。
或者如果你想更新整个数组 command
你可以在 v4 中做。请注意,这会在与 OP 中显示的不同的行中创建数组条目。参见 YAML Multi-Line Arrays
yq e '.spec.template.spec.containers[0].command |= ["a", "b", "c","d"] | ..style="double"' yaml
请注意,yq v4 已经推出并支持许多强大的路径表达式和操作。有关说明,请参阅 Upgrading from v3
我有以下要替换命令字段的 yaml
有
apiVersion: batch/v1
kind: Job
metadata:
name: test004
spec:
template:
spec:
containers:
- name: "eee"
image: "test"
command: ["a", "b", "c"]
想要
apiVersion: batch/v1
kind: Job
metadata:
name: test004
spec:
template:
spec:
containers:
- name: "eee"
image: "test"
command: ["a", "b", "c", "d"]
yq -i n --style myfile.yaml 'spec.template.spec.containers[0].command' "["a", "b", "c","d"]"
有没有办法用 wq 实现这个,我尝试使用样式但没有成功,如果我将它更改为简单字符串它可以工作,但是当我想传递完整数组时不行,知道吗?
您可以使用字段 [+]
表示法 append fields in yq v3。所以你的命令结果是
yq --style double w -i myfile.yaml 'spec.template.spec.containers[0].command[+]' "c"
以上命令将条目 "c"
附加到数组。
或者如果你想更新整个数组 command
你可以在 v4 中做。请注意,这会在与 OP 中显示的不同的行中创建数组条目。参见 YAML Multi-Line Arrays
yq e '.spec.template.spec.containers[0].command |= ["a", "b", "c","d"] | ..style="double"' yaml
请注意,yq v4 已经推出并支持许多强大的路径表达式和操作。有关说明,请参阅 Upgrading from v3