stack-orchestrator/app/deploy/k8s/deploy_k8s.py

100 lines
4.0 KiB
Python
Raw Normal View History

2023-10-24 20:44:48 +00:00
# Copyright © 2023 Vulcanize
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
from kubernetes import client, config
2023-10-27 16:19:44 +00:00
2023-10-25 04:13:09 +00:00
from app.deploy.deployer import Deployer
2023-10-27 16:19:44 +00:00
from app.deploy.k8s.helpers import create_cluster, destroy_cluster, load_images_into_kind
from app.deploy.k8s.helpers import pods_in_deployment, log_stream_from_string
from app.deploy.k8s.cluster_info import ClusterInfo
from app.opts import opts
2023-10-24 20:44:48 +00:00
class K8sDeployer(Deployer):
name: str = "k8s"
2023-10-27 16:19:44 +00:00
core_api: client.CoreV1Api
apps_api: client.AppsV1Api
kind_cluster_name: str
cluster_info : ClusterInfo
2023-10-24 20:44:48 +00:00
def __init__(self, compose_files, compose_project_name, compose_env_file) -> None:
2023-10-27 16:19:44 +00:00
if (opts.o.debug):
print(f"Compose files: {compose_files}")
print(f"Project name: {compose_project_name}")
print(f"Env file: {compose_env_file}")
self.kind_cluster_name = compose_project_name
self.cluster_info = ClusterInfo()
self.cluster_info.int_from_pod_files(compose_files)
def connect_api(self):
config.load_kube_config(context=f"kind-{self.kind_cluster_name}")
self.core_api = client.CoreV1Api()
self.apps_api = client.AppsV1Api()
2023-10-24 20:44:48 +00:00
def up(self, detach, services):
2023-10-27 16:19:44 +00:00
# Create the kind cluster
create_cluster(self.kind_cluster_name)
self.connect_api()
# Ensure the referenced containers are copied into kind
load_images_into_kind(self.kind_cluster_name, self.cluster_info.image_set)
# Process compose files into a Deployment
deployment = self.cluster_info.get_deployment()
# Create the k8s objects
resp = self.apps_api.create_namespaced_deployment(
body=deployment, namespace="default"
)
if opts.o.debug:
print("Deployment created.\n")
print(f"{resp.metadata.namespace} {resp.metadata.name} \
{resp.metadata.generation} {resp.spec.template.spec.containers[0].image}")
2023-10-24 20:44:48 +00:00
def down(self, timeout, volumes):
2023-10-27 16:19:44 +00:00
# Delete the k8s objects
# Destroy the kind cluster
destroy_cluster(self.kind_cluster_name)
2023-10-24 20:44:48 +00:00
def ps(self):
2023-10-27 16:19:44 +00:00
self.connect_api()
# Call whatever API we need to get the running container list
ret = self.core_api.list_pod_for_all_namespaces(watch=False)
if ret.items:
for i in ret.items:
print("%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name))
ret = self.core_api.list_node(pretty=True, watch=False)
return []
2023-10-24 20:44:48 +00:00
def port(self, service, private_port):
2023-10-27 16:19:44 +00:00
# Since we handle the port mapping, need to figure out where this comes from
# Also look into whether it makes sense to get ports for k8s
2023-10-24 20:44:48 +00:00
pass
def execute(self, service_name, command, envs):
2023-10-27 16:19:44 +00:00
# Call the API to execute a command in a running container
2023-10-24 20:44:48 +00:00
pass
def logs(self, services, tail, follow, stream):
2023-10-27 16:19:44 +00:00
self.connect_api()
pods = pods_in_deployment(self.core_api, "test-deployment")
if len(pods) > 1:
print("Warning: more than one pod in the deployment")
k8s_pod_name = pods[0]
log_data = self.core_api.read_namespaced_pod_log(k8s_pod_name, namespace="default", container="test")
return log_stream_from_string(log_data)
2023-10-24 20:44:48 +00:00
def run(self, image, command, user, volumes, entrypoint=None):
2023-10-27 16:19:44 +00:00
# We need to figure out how to do this -- check why we're being called first
2023-10-24 20:44:48 +00:00
pass