yq是基于golang语言开发的一款json、yaml以及xml命令行工具,支持多个平台,github官网:GitHub - mikefarah/yq: yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor
文档地址:Shell Completion - yq
下面简单说下楼主遇到的场景:
1、读取一个配置文件内容,然后将从配置文件读取的每行内容作为一行数据插入到yaml的列表项中,yaml schema如下所示:
代码语言:javascript复制spec:
images: []
核心脚本如下所示:
代码语言:javascript复制idx=0
tex_file="images.txt"
while IFS= read -r line || [[ -n "$line" ]]
do
# Download the Docker image specified in the line
if [[ "$line" =~ ^[[:space:]]*$ ]];then
echo "该行为空,跳过"
else
yq -i '.spec.images["'"$idx"'"] = "'"$line"'"' manifest.yaml
#下标递增
idx=$(( idx 1 ))
fi
done < "$tex_file"
注意上面用到的yq指令中传入参数方式要使用"'"$idx"'"的格式
附上最后输出的结果:
代码语言:javascript复制spec:
images:
- docker.io/node-exporter:v1.3.1
- docker.io/prometheus:v2.34.0
- docker.io/redis:6.2.6