Helmfile annotations



我有一个关于头盔文件的问题。问题是:如何使用helmfile将注释设置为部署?我试过用固定的指令,但没有用。

检查非常相似的堆栈问题我如何在helmfile中分配值给变量?

你可以这样做

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

或类似的

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

如果你从helmcli设置注释,你可以像下面的例子:

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

相关内容

  • 没有找到相关文章

最新更新