English 中文(简体)
如何改变元数据。 在赫尔曼模板中的名称,并保留原有名称?
原标题:How to change metadata.name in Helm template and keep the old ones?

我的图表如下:

apiVersion: v1
kind: MyResource
metadata:
  name: myresource-{{ .Release.Revision }}
  labels:
    {{- include "mychart.labels" . | nindent 4 }}
s

我的打算行为是每次我操作的<代码>头盔升级。 这将创建新的<代码>。 我的Resource,将修订为书面和旧文本。

然而,它却立即拆除了旧的旧的房屋。 例如,在建立<条码>米资源-2<>代码>时,立即删除<条码>米资源-1。 是否有办法改变这种行为?

问题回答

摘录





相关问题
using Helm behind a proxy

I want to use Helm on new environment that only have access to Internte via Proxy. How can I use Helm commands with proxy? helm repo add .... helm repo update I tried to give proxy in command but I ...

helm with if condition and its scope for the value set

I would like to overwrite the user template with .Values.userTemplate if it exist. But I always get $user as undefined when the .Vaues.userTemplate exist. If i remove if condition and use {{- $user := ...

热门标签