Some checks failed
Lint Checks / Run linter (pull_request) Successful in 3m37s
Deploy Test / Run deploy test suite (pull_request) Failing after 7m29s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Failing after 8m48s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (pull_request) Failing after 11m22s
Webapp Test / Run webapp test suite (pull_request) Successful in 14m39s
Smoke Test / Run basic test suite (pull_request) Successful in 17m17s
For custom deploy commands
88 lines
3.2 KiB
Python
88 lines
3.2 KiB
Python
|
|
# Copyright © 2022, 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/>.
|
|
|
|
import hashlib
|
|
import os
|
|
from pathlib import Path
|
|
|
|
from stack_orchestrator import constants
|
|
from stack_orchestrator.util import get_yaml
|
|
from stack_orchestrator.deploy.stack import Stack
|
|
from stack_orchestrator.deploy.spec import Spec
|
|
|
|
|
|
class DeploymentContext:
|
|
deployment_dir: Path
|
|
id: str
|
|
spec: Spec
|
|
stack: Stack
|
|
|
|
def get_stack_file(self):
|
|
return self.deployment_dir.joinpath(constants.stack_file_name)
|
|
|
|
def get_spec_file(self):
|
|
return self.deployment_dir.joinpath(constants.spec_file_name)
|
|
|
|
def get_env_file(self):
|
|
return self.deployment_dir.joinpath(constants.config_file_name)
|
|
|
|
def get_deployment_file(self):
|
|
return self.deployment_dir.joinpath(constants.deployment_file_name)
|
|
|
|
def get_compose_dir(self):
|
|
return self.deployment_dir.joinpath(constants.compose_dir_name)
|
|
|
|
def get_compose_file(self, name: str):
|
|
return self.get_compose_dir() / f"docker-compose-{name}.yml"
|
|
|
|
def get_cluster_id(self):
|
|
return self.id
|
|
|
|
def init(self, dir: Path):
|
|
self.deployment_dir = dir.absolute()
|
|
self.spec = Spec()
|
|
self.spec.init_from_file(self.get_spec_file())
|
|
self.stack = Stack(self.spec.obj["stack"])
|
|
self.stack.init_from_file(self.get_stack_file())
|
|
deployment_file_path = self.get_deployment_file()
|
|
if deployment_file_path.exists():
|
|
obj = get_yaml().load(open(deployment_file_path, "r"))
|
|
self.id = obj[constants.cluster_id_key]
|
|
# Handle the case of a legacy deployment with no file
|
|
# Code below is intended to match the output from _make_default_cluster_name()
|
|
# TODO: remove when we no longer need to support legacy deployments
|
|
else:
|
|
path = os.path.realpath(os.path.abspath(self.get_compose_dir()))
|
|
unique_cluster_descriptor = f"{path},{self.get_stack_file()},None,None"
|
|
hash = hashlib.md5(unique_cluster_descriptor.encode()).hexdigest()[:16]
|
|
self.id = f"{constants.cluster_name_prefix}{hash}"
|
|
|
|
def modify_yaml(self, file_path: Path, modifier_func):
|
|
"""
|
|
Load a YAML from the deployment, apply a modification function, and write it back.
|
|
"""
|
|
if not file_path.absolute().is_relative_to(self.deployment_dir):
|
|
raise ValueError(f"File is not inside deployment directory: {file_path}")
|
|
|
|
yaml = get_yaml()
|
|
with open(file_path, 'r') as f:
|
|
yaml_data = yaml.load(f)
|
|
|
|
modifier_func(yaml_data)
|
|
|
|
with open(file_path, 'w') as f:
|
|
yaml.dump(yaml_data, f)
|