doushenyu2537 2019-03-25 19:46
浏览 599
已采纳

将YAML字符串转换为Helm模板中的dict

I am creating a chart for a project that has a binary that when executed generates a configuration file in YAML format that looks like this:

---
PARAM_1: value1
PARAM_2: value2

My chart needs to read this file and and load all of its values into environment variables in a container, so I created a variable config in my values.yaml file and when the chart is installed I am passing the file content using --set-file:

helm install <CHART> --set-file config=/path/to/yaml/config/file

Next I create a ConfigMap withe the value of .Values.config:

apiVersion: v1
kind: ConfigMap
metadata:
  ...
data:
  {{ .Values.config }}

The problem I am having is that I need to do two things with values of config:

  • prefix all keys with a predefined value (so in the example above I would MY_APP_PARAM_1 as key)
  • make sure the values are all string, otherwise the ConfigMap will fail

How can I parse the value of .Values.config in my template as a dict so that I can use a range loop do these changes?

  • 写回答

1条回答 默认 最新

  • dtpxi88884 2019-03-26 04:34
    关注

    In the end I was able to do something like this:

    {{ $lines := splitList "
    " .Values.config -}}
    {{- range $lines }}
    {{- if not (. | trim | empty) -}}
    {{- $kv := . | splitn ":" 2 -}}
    {{ printf "MY_APP_%s: %s" $kv._0 ($kv._1 | trim | quote) | indent 2 }}
    {{ end -}}
    {{- end -}}
    

    I had a hard time getting the {{- vs {{ right, and helm install --debug --dry-run . help a lot in this part.

    It's kind of messy, so I would be very interested in seeing if anyone has a better solution.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置