adding/deleting kubernetes 注释的 API 等价物是什么?
What is the API equivalent for adding/deleting kubernetes annotations?
我正在尝试找到 API 相当于 How to remove (delete) 注释在 Kubernetes 中
删除 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))
注释是资源整体元数据的一部分。 API 函数与修补资源有关,与注释无关。
Kubernetes API 文档 PATCH to a Service which equates to patch_namespaced_service
in the python API。
删除注释所需的JSON是:
{
"metadata": {
"annotations": {
"your/thing": null
}
}
}
Python 会将 None
序列化为 null
coreV1.patch_namespaced_service("my-service", "default", body={
"metadata":{"annotations":{"description": None}}
})
对于任何操作,如果您使用 kubectl -v8
:
增加日志级别的详细程度,cli 可以输出 REST 调用和“请求正文”
I1112 05:34:08.910667 10552 request.go:1097] Request Body: {"metadata":{"annotations":{"your/thing":null}}}
I1112 05:34:08.910771 10552 round_trippers.go:420] PATCH https://k8s:6443/api/v1/namespaces/default/services/kubernetes?fieldManager=kubectl-annotate
我正在尝试找到 API 相当于 How to remove (delete) 注释在 Kubernetes 中 删除 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))
注释是资源整体元数据的一部分。 API 函数与修补资源有关,与注释无关。
Kubernetes API 文档 PATCH to a Service which equates to patch_namespaced_service
in the python API。
删除注释所需的JSON是:
{
"metadata": {
"annotations": {
"your/thing": null
}
}
}
Python 会将 None
序列化为 null
coreV1.patch_namespaced_service("my-service", "default", body={
"metadata":{"annotations":{"description": None}}
})
对于任何操作,如果您使用 kubectl -v8
:
I1112 05:34:08.910667 10552 request.go:1097] Request Body: {"metadata":{"annotations":{"your/thing":null}}}
I1112 05:34:08.910771 10552 round_trippers.go:420] PATCH https://k8s:6443/api/v1/namespaces/default/services/kubernetes?fieldManager=kubectl-annotate