我正在尝试找到与如何在 Kubernetes 中删除(删除)注释的 API 等效项,以删除 Python 中服务类型的注释。从命令行执行此操作非常有效。
最新的kubernetes-client/python没有任何允许修补注释的 API。我总是可以删除并重新创建服务,但我想修补它。
如果有人愿意,这是一个简单的 MCVE。一个测试服务 YAML
apiVersion: v1
kind: Service
metadata:
name: my-service
annotations:
description: my test service
spec:
ports:
- protocol: TCP
port: 80
targetPort: 9376
和我正在使用的 Python 代码
from kubernetes import client, config
from kubernetes.client.rest import ApiException
config.load_kube_config()
coreV1 = client.CoreV1Api()
appsV1 = client.AppsV1Api()
try:
resp = coreV1.read_namespaced_service("my-service", "default")
del resp.metadata.annotations["description"]
patch = coreV1.patch_namespaced_service("my-service", "default", body=resp)
print(patch)
except ApiException as e:
print(str(e))