我正在尝试引用我的注释值。我正在尝试这样

annotations:
  {{- range $key, $value := .Values.ingress.annotations }}
     {{ $key }}: {{ printf "%s" $value | quote }}
  {{- end }}

和这个
annotations:
  {{- range $key, $value := .Values.ingress.annotations }}
     {{ $key }}: "{{ $value }}"
  {{- end }}

这是我的值(value)观。
annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/force-ssl-redirect: false

但它不起作用。即使我将values.yaml掌中的注释值双引号也删除了引号。有人可以告诉我如何在注释中使用双引号值吗?

我正在使用Helm版本3。

最佳答案

您可以尝试以下方法:

annotations:
  {{- range $key, $value := .Values.ingress.annotations }}
     {{ $key }}: {{ $value | quote }}
  {{- end }}

07-24 09:53