mod*_*tos 3 kubernetes kubernetes-deployment kubernetes-label
我正在尝试从现有部署的spec.selector.matchLabels配置中删除键/值对。例如,我正在尝试some.old.label: blah从spec.selector.matchLabels和中删除标签spec.template.metadata.labels。这是我发送至的内容的摘录kubectl apply -f:
spec:\n selector:\n matchLabels:\n app: my-app\n template:\n metadata:\n labels:\n app: my-app\nRun Code Online (Sandbox Code Playgroud)\n但这给了我以下错误:
\n\n\n\n
selector与模板不匹配labels
我也尝试过kubectl replace,这给了我这个错误:
\n\nv1.LabelSelector{MatchLabels:map[string]string{\xe2\x80\x9capp\xe2\x80\x9d: "my-app"}, MatchExpressions:[]v1.LabelSelectorRequirement(nil)}:字段不可变
\n
一旦我检查了产品中的部署配置,这就有意义了:
\nmetadata:\n annotations:\n kubectl.kubernetes.io/last-applied-configuration: |\n # my config is trying to mutate the matchLabels here:\n {"apiVersion":"apps/v1", ... "selector":{"matchLabels":{"app":"my-app"} ... }\n # etc...\nspec:\n selector:\n matchLabels:\n app: my-app\n some.old.label: blah # how do I remove this label from both the metadata.labels and matchLabels?\n template:\n metadata:\n labels:\n app: my-app\n some.old.label: blah # I want to remove this label\nRun Code Online (Sandbox Code Playgroud)\n请注意如何在和 some.old.label: blah下设置键/值。selector.matchLabelstemplate.metadata.labels
我是否必须删除然后重新创建我的部署?或者也许打电话kubectl replace --force?
我在Kubernetes 部署文档中看到了这一部分:
\n\n\n选择器删除会从部署选择器中删除现有密钥——不需要对 Pod 模板标签进行任何更改。现有的 ReplicaSet 不是孤立的,也不会创建新的 ReplicaSet,但请注意,删除的标签仍然存在于任何现有的 Pod 和 ReplicaSet 中。
\n
以及此 PR和此 Github 问题,它们谈到了问题背后的原因,但我不知道如何安全地更新我的部署以删除此选择器。
\n当错误消息显示“字段是不可变的”时,这意味着一旦设置就无法更改它。您需要删除并使用所需的标签选择器重新创建 Deployment(这也会暂时删除所有匹配的 Pod)。
kubectl delete deployment my-app
kubectl apply -f ./deployment.yaml
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3902 次 |
| 最近记录: |