从 yaml 文件中的变量中提取 yaml 文件

Extract yaml file from a variable within a yaml file

我有一个简单的 yaml 文件:

# replicas: number of pods
replicas: 1
# test
hello: world

我将其存储在 kubernetes 配置映射中:

apiVersion: v1
data:
  helm_values: |
    # replicas: number of pods
    replicas: 1
    # test
    hello: world
kind: ConfigMap
metadata:
  creationTimestamp: 2018-07-30T06:07:38Z

我现在想从 configmap 中提取内部 yaml 文件。尝试 yq 我得到:

$ VAR=$(oc get configmap backoffice-deployer -o yaml | yq .data.helm_values)
$ echo $VAR
"# replicas: number of pods\nreplicas: 1\n# test\nhello: world\n"

如果我尝试将 VAR 回显或打印到一个文件中,它的格式与原始文件不一样。

在 bash 中以 bash 中原始文件的格式获取提取数据的最简单方法是什么?

我无法完全复制您的代码,但这是我得到的(OSX、bash v4.4.23、yq v2.1.0):

var=$(cat test.yaml | yq r - data.helm_values)
echo "$var"

有输出

# replicas: number of pods
replicas: 1
# test
hello: world

如果我忘记了引号,(echo $var),那么:

# replicas: number of pods replicas: 1 # test hello: world

(没有换行,没有\n)。

我还可以进一步处理它:

echo "$var" | yq r - hello
# => world

在 yq v2.6.0 中,命令参数发生了变化:

var=$(cat test.yaml | yq -r .data.helm_values)
echo "$var"