-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathapply_from_dict.py
More file actions
21 lines (18 loc) · 879 Bytes
/
apply_from_dict.py
File metadata and controls
21 lines (18 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import sys
from kubernetes.client.rest import ApiException
from kubernetes import client, config, utils
def main():
config.load_kube_config()
k8s_client = client.ApiClient()
# example nginx deployment
example_dict = {'apiVersion': 'apps/v1', 'kind': 'Deployment', 'metadata': {'name': 'k8s-py-client-nginx'}, 'spec': {'selector': {'matchLabels': {'app': 'nginx'}}, 'replicas': 1, 'template': {'metadata': {'labels': {'app': 'nginx'}}, 'spec': {'containers': [{'name': 'nginx', 'image': 'nginx:1.14.2', 'ports': [{'containerPort': 80}]}]}}}}
utils.create_from_dict(k8s_client, example_dict)
if __name__ == "__main__":
try:
main()
except ApiException as e:
print(f"Kubernetes API error: {e}", file=sys.stderr)
sys.exit(1)
except Exception as e:
print(f"Unexpected error: {e}", file=sys.stderr)
sys.exit(2)