根据条件更新 yq 中的数组值
Update array value in yq on base of criteria
我有如下示例 yaml
scrape_configs:
- job_name: 'snmp-moxa'
static_configs:
- targets:
- job_name: prometheus
static_configs:
- targets:
- localhost:9090
我想在 job_name 等于 'snmp-moxa' 的地方添加 IP 地址,我尝试了以下但 none 工作
验证它到达正确的路径
# yq eval '.scrape_configs[] | select(.job_name == "snmp-moxa") | .static_configs' prom.yaml
- targets:
以下是两次更新值的尝试
#yq eval -i '.scrape_configs[] | select(.job_name == "snmp-moxa") | .static_configs.targets |= . + ["10.11.158.177"]' prom.yaml
Error: Cannot index array with 'targets' (strconv.ParseInt: parsing "targets": invalid syntax)
# yq eval -i '.scrape_configs[] | select(.job_name == "snmp-moxa") | .static_configs.targets |= . + [10.11.158.177]' prom.yaml
Error: expected end of expression but found '|', please check expression syntax
生成的 yaml 应该是这样的
scrape_configs:
- job_name: 'snmp-moxa'
static_configs:
- targets: 10.11.158.177
or
- targets:
- 10.11.158.177
- job_name: prometheus
static_configs:
- targets:
- localhost:9090
你的想法几乎是对的,但是static_configs
记录是数组类型而不是标量类型。因此,您需要使用 []
符号访问其中的子字段,即
您可能需要 targets
作为数组,因此使用 +=
附加数组内容(在 yq 版本 4.13.5 上测试)
yq e '(.scrape_configs[] | select(.job_name == "snmp-moxa").static_configs[].targets) += [ "10.11.158.177" ]' yaml
我有如下示例 yaml
scrape_configs:
- job_name: 'snmp-moxa'
static_configs:
- targets:
- job_name: prometheus
static_configs:
- targets:
- localhost:9090
我想在 job_name 等于 'snmp-moxa' 的地方添加 IP 地址,我尝试了以下但 none 工作
验证它到达正确的路径
# yq eval '.scrape_configs[] | select(.job_name == "snmp-moxa") | .static_configs' prom.yaml
- targets:
以下是两次更新值的尝试
#yq eval -i '.scrape_configs[] | select(.job_name == "snmp-moxa") | .static_configs.targets |= . + ["10.11.158.177"]' prom.yaml
Error: Cannot index array with 'targets' (strconv.ParseInt: parsing "targets": invalid syntax)
# yq eval -i '.scrape_configs[] | select(.job_name == "snmp-moxa") | .static_configs.targets |= . + [10.11.158.177]' prom.yaml
Error: expected end of expression but found '|', please check expression syntax
生成的 yaml 应该是这样的
scrape_configs:
- job_name: 'snmp-moxa'
static_configs:
- targets: 10.11.158.177
or
- targets:
- 10.11.158.177
- job_name: prometheus
static_configs:
- targets:
- localhost:9090
你的想法几乎是对的,但是static_configs
记录是数组类型而不是标量类型。因此,您需要使用 []
符号访问其中的子字段,即
您可能需要 targets
作为数组,因此使用 +=
附加数组内容(在 yq 版本 4.13.5 上测试)
yq e '(.scrape_configs[] | select(.job_name == "snmp-moxa").static_configs[].targets) += [ "10.11.158.177" ]' yaml