Helmfile 注释

Helmfile annotations

我有一个关于 helmfile 的问题。问题是:如何使用 helmfile 为部署设置注解?我试过使用设置指令,但它不起作用。也没有在文档中找到任何信息。

如果你从 helm cli 设置注释,你可以像这个例子一样:

helm install stable/nginx-ingress --set controller.service.annotations."cloud\.google\.com\/load-balancer\-type"=Internal

检查了非常相似的堆栈问题How do I assign value to variable in helmfile??

你可以like this

set:
- name: "ingress.annotations.kubernetes\.io/ingress\.class"
  value: "nginx"
  ...

like that

    annotations:
      kubernetes.io/ingress.class: "nginx"
      kubernetes.io/tls-acme: "true"