-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathk8s_pod.py
31 lines (24 loc) · 886 Bytes
/
k8s_pod.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
# -*- coding: utf-8 -*-
#
# Copyright Contributors to the Conu project.
# SPDX-License-Identifier: MIT
#
import logging
from conu import K8sBackend, \
DockerBackend
from conu.backend.k8s.pod import PodPhase
from conu.utils import get_oc_api_token
api_key = get_oc_api_token()
with K8sBackend(api_key=api_key, logging_level=logging.DEBUG) as k8s_backend:
namespace = k8s_backend.create_namespace()
with DockerBackend(logging_level=logging.DEBUG) as backend:
image = backend.ImageClass("openshift/hello-openshift")
pod = image.run_in_pod(namespace=namespace)
try:
pod.wait(200)
assert pod.is_ready()
assert pod.get_phase() == PodPhase.RUNNING
finally:
pod.delete()
assert pod.get_phase() == PodPhase.TERMINATING
k8s_backend.delete_namespace(namespace)