-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathqueue-size-change.py
59 lines (46 loc) · 1.8 KB
/
queue-size-change.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# from kubernetes import client, config
# import json
# import base64
# # Load the Kubernetes configuration from the default location
# config.load_kube_config()
# # Create a Kubernetes API client
# api_client = client.CoreV1Api()
# # Get the name of the Pod containing the container you want to modify
# pod_name = "my-pod"
# # Get the name of the container you want to modify
# container_name = "my-container"
# # Get the current environment variables of the container
# container = api_client.read_namespaced_pod(pod_name, namespace="default")
# env_vars = container.spec.containers[0].env
# # Modify the value of the environment variable you want to change
# for env_var in env_vars:
# if env_var.name == "MLSERVER_MODEL_MAX_BATCH_SIZE":
# env_var.value = "new-value"
# # Encode the modified environment variables as a JSON string
# env_json = json.dumps([{"name": env_var.name, "value": env_var.value} for env_var in env_vars])
# env_base64 = base64.b64encode(env_json.encode('utf-8')).decode('utf-8')
# # Patch the container's environment variables using kubectl exec
# command = f"export MLSERVER_MODEL_MAX_BATCH_SIZE={env_base64}; envsubst < /dev/null"
# exec_command = [
# "/bin/sh",
# "-c",
# command
# ]
# api_client.connect_get_namespaced_pod_exec(
# pod_name,
# "default",
# command=exec_command,
# container=container_name,
# stdin=True,
# stdout=True,
# stderr=True,
# tty=False,
# )
import requests
# kubectl exec -it <pod-name> -- /bin/bash -c "export MY_VARIABLE=new-value"
# response = requests.post("http://localhost:32000/seldon/default/queue-resnet-human/v2/repository/index", json={})
response = requests.post(
"http://localhost:32000/seldon/default/queue-resnet-human/v2/repository/models/queue-resnet-human/load",
json={},
)
print(response)