# 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 . from kubernetes import client, utils, watch from kubernetes.client.exceptions import ApiException import os from pathlib import Path import subprocess import re from typing import Set, Mapping, List, Optional, cast import yaml from stack_orchestrator.util import get_k8s_dir, error_exit from stack_orchestrator.opts import opts from stack_orchestrator.deploy.deploy_util import parsed_pod_files_map_from_file_names from stack_orchestrator.deploy.deployer import DeployerException from stack_orchestrator import constants def is_host_path_mount(volume_name: str) -> bool: """Check if a volume name is a host path mount (starts with /, ., or ~).""" return volume_name.startswith(("/", ".", "~")) def sanitize_host_path_to_volume_name(host_path: str) -> str: """Convert a host path to a valid k8s volume name. K8s volume names must be lowercase, alphanumeric, with - allowed. E.g., '../config/test/script.sh' -> 'host-path-config-test-script-sh' """ # Remove leading ./ or ../ clean_path = re.sub(r"^\.+/", "", host_path) # Replace path separators and dots with hyphens name = re.sub(r"[/.]", "-", clean_path) # Remove any non-alphanumeric characters except hyphens name = re.sub(r"[^a-zA-Z0-9-]", "", name) # Convert to lowercase name = name.lower() # Remove leading/trailing hyphens and collapse multiple hyphens name = re.sub(r"-+", "-", name).strip("-") # Prefix with 'host-path-' to distinguish from named volumes return f"host-path-{name}" def resolve_host_path_for_kind(host_path: str, deployment_dir: Path) -> Path: """Resolve a host path mount (relative to compose file) to absolute path. Compose files are in deployment_dir/compose/, so '../config/foo' resolves to deployment_dir/config/foo. """ # The path is relative to the compose directory compose_dir = deployment_dir.joinpath("compose") resolved = compose_dir.joinpath(host_path).resolve() return resolved def get_kind_host_path_mount_path(sanitized_name: str) -> str: """Get the path inside the kind node where a host path mount will be available.""" return f"/mnt/{sanitized_name}" def get_kind_cluster(): """Get an existing kind cluster, if any. Uses `kind get clusters` to find existing clusters. Returns the cluster name or None if no cluster exists. """ result = subprocess.run( "kind get clusters", shell=True, capture_output=True, text=True ) if result.returncode != 0: return None clusters = result.stdout.strip().splitlines() if clusters: return clusters[0] # Return the first cluster found return None def _run_command(command: str): if opts.o.debug: print(f"Running: {command}") result = subprocess.run(command, shell=True) if opts.o.debug: print(f"Result: {result}") return result def _get_etcd_host_path_from_kind_config(config_file: str) -> Optional[str]: """Extract etcd host path from kind config extraMounts.""" import yaml try: with open(config_file, "r") as f: config = yaml.safe_load(f) except Exception: return None nodes = config.get("nodes", []) for node in nodes: extra_mounts = node.get("extraMounts", []) for mount in extra_mounts: if mount.get("containerPath") == "/var/lib/etcd": return mount.get("hostPath") return None def _clean_etcd_keeping_certs(etcd_path: str) -> bool: """Clean persisted etcd, keeping only TLS certificates. When etcd is persisted and a cluster is recreated, kind tries to install resources fresh but they already exist. Instead of trying to delete specific stale resources (blacklist), we keep only the valuable data (caddy TLS certs) and delete everything else (whitelist approach). The etcd image is distroless (no shell), so we extract the statically-linked etcdctl binary and run it from alpine which has shell support. Returns True if cleanup succeeded, False if no action needed or failed. """ db_path = Path(etcd_path) / "member" / "snap" / "db" # Check existence using docker since etcd dir is root-owned check_cmd = ( f"docker run --rm -v {etcd_path}:/etcd:ro alpine:3.19 " "test -f /etcd/member/snap/db" ) check_result = subprocess.run(check_cmd, shell=True, capture_output=True) if check_result.returncode != 0: if opts.o.debug: print(f"No etcd snapshot at {db_path}, skipping cleanup") return False if opts.o.debug: print(f"Cleaning persisted etcd at {etcd_path}, keeping only TLS certs") etcd_image = "gcr.io/etcd-development/etcd:v3.5.9" temp_dir = "/tmp/laconic-etcd-cleanup" # Whitelist: prefixes to KEEP - everything else gets deleted keep_prefixes = "/registry/secrets/caddy-system" # The etcd image is distroless (no shell). We extract the statically-linked # etcdctl binary and run it from alpine which has shell + jq support. cleanup_script = f""" set -e ALPINE_IMAGE="alpine:3.19" # Cleanup previous runs docker rm -f laconic-etcd-cleanup 2>/dev/null || true docker rm -f etcd-extract 2>/dev/null || true docker run --rm -v /tmp:/tmp $ALPINE_IMAGE rm -rf {temp_dir} # Create temp dir docker run --rm -v /tmp:/tmp $ALPINE_IMAGE mkdir -p {temp_dir} # Extract etcdctl binary (it's statically linked) docker create --name etcd-extract {etcd_image} docker cp etcd-extract:/usr/local/bin/etcdctl /tmp/etcdctl-bin docker rm etcd-extract docker run --rm -v /tmp/etcdctl-bin:/src:ro -v {temp_dir}:/dst $ALPINE_IMAGE \ sh -c "cp /src /dst/etcdctl && chmod +x /dst/etcdctl" # Copy db to temp location docker run --rm \ -v {etcd_path}:/etcd:ro \ -v {temp_dir}:/tmp-work \ $ALPINE_IMAGE cp /etcd/member/snap/db /tmp-work/etcd-snapshot.db # Restore snapshot docker run --rm -v {temp_dir}:/work {etcd_image} \ etcdutl snapshot restore /work/etcd-snapshot.db \ --data-dir=/work/etcd-data --skip-hash-check 2>/dev/null # Start temp etcd (runs the etcd binary, no shell needed) docker run -d --name laconic-etcd-cleanup \ -v {temp_dir}/etcd-data:/etcd-data \ -v {temp_dir}:/backup \ {etcd_image} etcd \ --data-dir=/etcd-data \ --listen-client-urls=http://0.0.0.0:2379 \ --advertise-client-urls=http://localhost:2379 sleep 3 # Use alpine with extracted etcdctl to run commands (alpine has shell + jq) # Export caddy secrets docker run --rm \ -v {temp_dir}:/backup \ --network container:laconic-etcd-cleanup \ $ALPINE_IMAGE sh -c \ '/backup/etcdctl get --prefix "{keep_prefixes}" -w json \ > /backup/kept.json 2>/dev/null || echo "{{}}" > /backup/kept.json' # Delete ALL registry keys docker run --rm \ -v {temp_dir}:/backup \ --network container:laconic-etcd-cleanup \ $ALPINE_IMAGE /backup/etcdctl del --prefix /registry # Restore kept keys using jq docker run --rm \ -v {temp_dir}:/backup \ --network container:laconic-etcd-cleanup \ $ALPINE_IMAGE sh -c ' apk add --no-cache jq >/dev/null 2>&1 jq -r ".kvs[] | @base64" /backup/kept.json 2>/dev/null | \ while read encoded; do key=$(echo $encoded | base64 -d | jq -r ".key" | base64 -d) val=$(echo $encoded | base64 -d | jq -r ".value" | base64 -d) echo "$val" | /backup/etcdctl put "$key" done ' || true # Save cleaned snapshot docker exec laconic-etcd-cleanup \ etcdctl snapshot save /etcd-data/cleaned-snapshot.db docker stop laconic-etcd-cleanup docker rm laconic-etcd-cleanup # Restore to temp location first to verify it works docker run --rm \ -v {temp_dir}/etcd-data/cleaned-snapshot.db:/data/db:ro \ -v {temp_dir}:/restore \ {etcd_image} \ etcdutl snapshot restore /data/db --data-dir=/restore/new-etcd \ --skip-hash-check 2>/dev/null # Create timestamped backup of original (kept forever) TIMESTAMP=$(date +%Y%m%d-%H%M%S) docker run --rm -v {etcd_path}:/etcd $ALPINE_IMAGE \ cp -a /etcd/member /etcd/member.backup-$TIMESTAMP # Replace original with cleaned version docker run --rm -v {etcd_path}:/etcd -v {temp_dir}:/tmp-work $ALPINE_IMAGE \ sh -c "rm -rf /etcd/member && mv /tmp-work/new-etcd/member /etcd/member" # Cleanup temp files (but NOT the timestamped backup in etcd_path) docker run --rm -v /tmp:/tmp $ALPINE_IMAGE rm -rf {temp_dir} rm -f /tmp/etcdctl-bin """ result = subprocess.run(cleanup_script, shell=True, capture_output=True, text=True) if result.returncode != 0: if opts.o.debug: print(f"Warning: etcd cleanup failed: {result.stderr}") return False if opts.o.debug: print("Cleaned etcd, kept only TLS certificates") return True def create_cluster(name: str, config_file: str): """Create or reuse the single kind cluster for this host. There is only one kind cluster per host by design. Multiple deployments share this cluster. If a cluster already exists, it is reused. Args: name: Cluster name (used only when creating the first cluster) config_file: Path to kind config file (used only when creating) Returns: The name of the cluster being used """ existing = get_kind_cluster() if existing: print(f"Using existing cluster: {existing}") return existing # Clean persisted etcd, keeping only TLS certificates etcd_path = _get_etcd_host_path_from_kind_config(config_file) if etcd_path: _clean_etcd_keeping_certs(etcd_path) print(f"Creating new cluster: {name}") result = _run_command(f"kind create cluster --name {name} --config {config_file}") if result.returncode != 0: raise DeployerException(f"kind create cluster failed: {result}") return name def destroy_cluster(name: str): _run_command(f"kind delete cluster --name {name}") def is_ingress_running() -> bool: """Check if the Caddy ingress controller is already running in the cluster.""" try: core_v1 = client.CoreV1Api() pods = core_v1.list_namespaced_pod( namespace="caddy-system", label_selector=( "app.kubernetes.io/name=caddy-ingress-controller," "app.kubernetes.io/component=controller" ), ) for pod in pods.items: if pod.status and pod.status.container_statuses: if pod.status.container_statuses[0].ready is True: if opts.o.debug: print("Caddy ingress controller already running") return True return False except ApiException: return False def wait_for_ingress_in_kind(): core_v1 = client.CoreV1Api() for i in range(20): warned_waiting = False w = watch.Watch() for event in w.stream( func=core_v1.list_namespaced_pod, namespace="caddy-system", label_selector=( "app.kubernetes.io/name=caddy-ingress-controller," "app.kubernetes.io/component=controller" ), timeout_seconds=30, ): event_dict = cast(dict, event) pod = cast(client.V1Pod, event_dict.get("object")) if pod and pod.status and pod.status.container_statuses: if pod.status.container_statuses[0].ready is True: if warned_waiting: print("Caddy ingress controller is ready") return print("Waiting for Caddy ingress controller to become ready...") warned_waiting = True error_exit("ERROR: Timed out waiting for Caddy ingress to become ready") def install_ingress_for_kind(acme_email: str = ""): api_client = client.ApiClient() ingress_install = os.path.abspath( get_k8s_dir().joinpath( "components", "ingress", "ingress-caddy-kind-deploy.yaml" ) ) if opts.o.debug: print("Installing Caddy ingress controller in kind cluster") # Template the YAML with email before applying with open(ingress_install) as f: yaml_content = f.read() if acme_email: yaml_content = yaml_content.replace('email: ""', f'email: "{acme_email}"') if opts.o.debug: print(f"Configured Caddy with ACME email: {acme_email}") # Apply templated YAML yaml_objects = list(yaml.safe_load_all(yaml_content)) utils.create_from_yaml(api_client, yaml_objects=yaml_objects) # Patch ConfigMap with ACME email if provided if acme_email: if opts.o.debug: print(f"Configuring ACME email: {acme_email}") core_api = client.CoreV1Api() configmap = core_api.read_namespaced_config_map( name="caddy-ingress-controller-configmap", namespace="caddy-system" ) configmap.data["email"] = acme_email core_api.patch_namespaced_config_map( name="caddy-ingress-controller-configmap", namespace="caddy-system", body=configmap, ) def load_images_into_kind(kind_cluster_name: str, image_set: Set[str]): for image in image_set: result = _run_command( f"kind load docker-image {image} --name {kind_cluster_name}" ) if result.returncode != 0: raise DeployerException(f"kind load docker-image failed: {result}") def pods_in_deployment(core_api: client.CoreV1Api, deployment_name: str): pods = [] pod_response = core_api.list_namespaced_pod( namespace="default", label_selector=f"app={deployment_name}" ) if opts.o.debug: print(f"pod_response: {pod_response}") for pod_info in pod_response.items: pod_name = pod_info.metadata.name pods.append(pod_name) return pods def containers_in_pod(core_api: client.CoreV1Api, pod_name: str) -> List[str]: containers: List[str] = [] pod_response = cast( client.V1Pod, core_api.read_namespaced_pod(pod_name, namespace="default") ) if opts.o.debug: print(f"pod_response: {pod_response}") if not pod_response.spec or not pod_response.spec.containers: return containers for pod_container in pod_response.spec.containers: if pod_container.name: containers.append(pod_container.name) return containers def log_stream_from_string(s: str): # Note response has to be UTF-8 encoded because the caller expects to decode it yield ("ignore", s.encode()) def named_volumes_from_pod_files(parsed_pod_files): # Parse the compose files looking for named volumes named_volumes = [] for pod in parsed_pod_files: parsed_pod_file = parsed_pod_files[pod] if "volumes" in parsed_pod_file: volumes = parsed_pod_file["volumes"] for volume, value in volumes.items(): # Volume definition looks like: # 'laconicd-data': None named_volumes.append(volume) return named_volumes def get_kind_pv_bind_mount_path(volume_name: str): return f"/mnt/{volume_name}" def volume_mounts_for_service(parsed_pod_files, service): result = [] # Find the service for pod in parsed_pod_files: parsed_pod_file = parsed_pod_files[pod] if "services" in parsed_pod_file: services = parsed_pod_file["services"] for service_name in services: if service_name == service: service_obj = services[service_name] if "volumes" in service_obj: volumes = service_obj["volumes"] for mount_string in volumes: # Looks like: test-data:/data # or test-data:/data:ro or test-data:/data:rw # or ../config/file.sh:/opt/file.sh (host path mount) if opts.o.debug: print(f"mount_string: {mount_string}") mount_split = mount_string.split(":") volume_name = mount_split[0] mount_path = mount_split[1] mount_options = ( mount_split[2] if len(mount_split) == 3 else None ) # For host path mounts, use sanitized name if is_host_path_mount(volume_name): k8s_volume_name = sanitize_host_path_to_volume_name( volume_name ) else: k8s_volume_name = volume_name if opts.o.debug: print(f"volume_name: {volume_name}") print(f"k8s_volume_name: {k8s_volume_name}") print(f"mount path: {mount_path}") print(f"mount options: {mount_options}") volume_device = client.V1VolumeMount( mount_path=mount_path, name=k8s_volume_name, read_only="ro" == mount_options, ) result.append(volume_device) return result def volumes_for_pod_files(parsed_pod_files, spec, app_name): result = [] seen_host_path_volumes = set() # Track host path volumes to avoid duplicates for pod in parsed_pod_files: parsed_pod_file = parsed_pod_files[pod] # Handle named volumes from top-level volumes section if "volumes" in parsed_pod_file: volumes = parsed_pod_file["volumes"] for volume_name in volumes.keys(): if volume_name in spec.get_configmaps(): # Set defaultMode=0o755 to make scripts executable config_map = client.V1ConfigMapVolumeSource( name=f"{app_name}-{volume_name}", default_mode=0o755 ) volume = client.V1Volume(name=volume_name, config_map=config_map) result.append(volume) else: claim = client.V1PersistentVolumeClaimVolumeSource( claim_name=f"{app_name}-{volume_name}" ) volume = client.V1Volume( name=volume_name, persistent_volume_claim=claim ) result.append(volume) # Handle host path mounts from service volumes if "services" in parsed_pod_file: services = parsed_pod_file["services"] for service_name in services: service_obj = services[service_name] if "volumes" in service_obj: for mount_string in service_obj["volumes"]: mount_split = mount_string.split(":") volume_source = mount_split[0] if is_host_path_mount(volume_source): sanitized_name = sanitize_host_path_to_volume_name( volume_source ) if sanitized_name not in seen_host_path_volumes: seen_host_path_volumes.add(sanitized_name) # Create hostPath volume for mount inside kind node kind_mount_path = get_kind_host_path_mount_path( sanitized_name ) host_path_source = client.V1HostPathVolumeSource( path=kind_mount_path, type="FileOrCreate" ) volume = client.V1Volume( name=sanitized_name, host_path=host_path_source ) result.append(volume) if opts.o.debug: print(f"Created hostPath volume: {sanitized_name}") return result def _get_host_paths_for_volumes(deployment_context): return deployment_context.spec.get_volumes() def _make_absolute_host_path(data_mount_path: Path, deployment_dir: Path) -> Path: if os.path.isabs(data_mount_path): return data_mount_path else: # Python Path voodo that looks pretty odd: return Path.cwd().joinpath(deployment_dir.joinpath(data_mount_path)).resolve() def _generate_kind_mounts(parsed_pod_files, deployment_dir, deployment_context): volume_definitions = [] volume_host_path_map = _get_host_paths_for_volumes(deployment_context) seen_host_path_mounts = set() # Track to avoid duplicate mounts # Cluster state backup for offline data recovery (unique per deployment) # etcd contains all k8s state; PKI certs needed to decrypt etcd offline deployment_id = deployment_context.id backup_subdir = f"cluster-backups/{deployment_id}" etcd_host_path = _make_absolute_host_path( Path(f"./data/{backup_subdir}/etcd"), deployment_dir ) volume_definitions.append( f" - hostPath: {etcd_host_path}\n" f" containerPath: /var/lib/etcd\n" ) pki_host_path = _make_absolute_host_path( Path(f"./data/{backup_subdir}/pki"), deployment_dir ) volume_definitions.append( f" - hostPath: {pki_host_path}\n" f" containerPath: /etc/kubernetes/pki\n" ) # Note these paths are relative to the location of the pod files (at present) # So we need to fix up to make them correct and absolute because kind assumes # relative to the cwd. for pod in parsed_pod_files: parsed_pod_file = parsed_pod_files[pod] if "services" in parsed_pod_file: services = parsed_pod_file["services"] for service_name in services: service_obj = services[service_name] if "volumes" in service_obj: volumes = service_obj["volumes"] for mount_string in volumes: # Looks like: test-data:/data # or test-data:/data:ro or test-data:/data:rw # or ../config/file.sh:/opt/file.sh (host path mount) if opts.o.debug: print(f"mount_string: {mount_string}") mount_split = mount_string.split(":") volume_name = mount_split[0] mount_path = mount_split[1] if is_host_path_mount(volume_name): # Host path mount - add extraMount for kind sanitized_name = sanitize_host_path_to_volume_name( volume_name ) if sanitized_name not in seen_host_path_mounts: seen_host_path_mounts.add(sanitized_name) # Resolve path relative to compose directory host_path = resolve_host_path_for_kind( volume_name, deployment_dir ) container_path = get_kind_host_path_mount_path( sanitized_name ) volume_definitions.append( f" - hostPath: {host_path}\n" f" containerPath: {container_path}\n" ) if opts.o.debug: print(f"Added host path mount: {host_path}") else: # Named volume if opts.o.debug: print(f"volume_name: {volume_name}") print(f"map: {volume_host_path_map}") print(f"mount path: {mount_path}") if ( volume_name not in deployment_context.spec.get_configmaps() ): if ( volume_name in volume_host_path_map and volume_host_path_map[volume_name] ): host_path = _make_absolute_host_path( volume_host_path_map[volume_name], deployment_dir, ) container_path = get_kind_pv_bind_mount_path( volume_name ) volume_definitions.append( f" - hostPath: {host_path}\n" f" containerPath: {container_path}\n" ) return ( "" if len(volume_definitions) == 0 else (" extraMounts:\n" f"{''.join(volume_definitions)}") ) # TODO: decide if we need this functionality def _generate_kind_port_mappings_from_services(parsed_pod_files): port_definitions = [] for pod in parsed_pod_files: parsed_pod_file = parsed_pod_files[pod] if "services" in parsed_pod_file: services = parsed_pod_file["services"] for service_name in services: service_obj = services[service_name] if "ports" in service_obj: ports = service_obj["ports"] for port_string in ports: # TODO handle the complex cases # Looks like: 80 or something more complicated port_definitions.append( f" - containerPort: {port_string}\n" f" hostPort: {port_string}\n" ) return ( "" if len(port_definitions) == 0 else (" extraPortMappings:\n" f"{''.join(port_definitions)}") ) def _generate_kind_port_mappings(parsed_pod_files): port_definitions = [] # Map port 80 and 443 for the Caddy ingress controller (HTTPS support) for port_string in ["80", "443"]: port_definitions.append( f" - containerPort: {port_string}\n hostPort: {port_string}\n" ) return ( "" if len(port_definitions) == 0 else (" extraPortMappings:\n" f"{''.join(port_definitions)}") ) def _generate_high_memlock_spec_mount(deployment_dir: Path): """Generate the extraMount entry for high-memlock-spec.json. The spec file must be mounted at the same path inside the kind node as it appears on the host, because containerd's base_runtime_spec references an absolute path. """ spec_path = deployment_dir.joinpath(constants.high_memlock_spec_filename).resolve() return f" - hostPath: {spec_path}\n" f" containerPath: {spec_path}\n" def generate_high_memlock_spec_json(): """Generate OCI spec JSON with unlimited RLIMIT_MEMLOCK. This is needed for workloads like Solana validators that require large amounts of locked memory for memory-mapped files during snapshot decompression. The IPC_LOCK capability alone doesn't raise the RLIMIT_MEMLOCK limit - it only allows mlock() calls. We need to set the rlimit in the OCI runtime spec. IMPORTANT: This must be a complete OCI runtime spec, not just the rlimits section. The spec is based on kind's default cri-base.json with rlimits added. """ import json # Use maximum 64-bit signed integer value for unlimited max_rlimit = 9223372036854775807 # Based on kind's /etc/containerd/cri-base.json with rlimits added spec = { "ociVersion": "1.1.0-rc.1", "process": { "user": {"uid": 0, "gid": 0}, "cwd": "/", "capabilities": { "bounding": [ "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FSETID", "CAP_FOWNER", "CAP_MKNOD", "CAP_NET_RAW", "CAP_SETGID", "CAP_SETUID", "CAP_SETFCAP", "CAP_SETPCAP", "CAP_NET_BIND_SERVICE", "CAP_SYS_CHROOT", "CAP_KILL", "CAP_AUDIT_WRITE", ], "effective": [ "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FSETID", "CAP_FOWNER", "CAP_MKNOD", "CAP_NET_RAW", "CAP_SETGID", "CAP_SETUID", "CAP_SETFCAP", "CAP_SETPCAP", "CAP_NET_BIND_SERVICE", "CAP_SYS_CHROOT", "CAP_KILL", "CAP_AUDIT_WRITE", ], "permitted": [ "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FSETID", "CAP_FOWNER", "CAP_MKNOD", "CAP_NET_RAW", "CAP_SETGID", "CAP_SETUID", "CAP_SETFCAP", "CAP_SETPCAP", "CAP_NET_BIND_SERVICE", "CAP_SYS_CHROOT", "CAP_KILL", "CAP_AUDIT_WRITE", ], }, "rlimits": [ {"type": "RLIMIT_MEMLOCK", "hard": max_rlimit, "soft": max_rlimit}, {"type": "RLIMIT_NOFILE", "hard": 1048576, "soft": 1048576}, ], "noNewPrivileges": True, }, "root": {"path": "rootfs"}, "mounts": [ { "destination": "/proc", "type": "proc", "source": "proc", "options": ["nosuid", "noexec", "nodev"], }, { "destination": "/dev", "type": "tmpfs", "source": "tmpfs", "options": ["nosuid", "strictatime", "mode=755", "size=65536k"], }, { "destination": "/dev/pts", "type": "devpts", "source": "devpts", "options": [ "nosuid", "noexec", "newinstance", "ptmxmode=0666", "mode=0620", "gid=5", ], }, { "destination": "/dev/shm", "type": "tmpfs", "source": "shm", "options": ["nosuid", "noexec", "nodev", "mode=1777", "size=65536k"], }, { "destination": "/dev/mqueue", "type": "mqueue", "source": "mqueue", "options": ["nosuid", "noexec", "nodev"], }, { "destination": "/sys", "type": "sysfs", "source": "sysfs", "options": ["nosuid", "noexec", "nodev", "ro"], }, { "destination": "/run", "type": "tmpfs", "source": "tmpfs", "options": ["nosuid", "strictatime", "mode=755", "size=65536k"], }, ], "linux": { "resources": {"devices": [{"allow": False, "access": "rwm"}]}, "cgroupsPath": "/default", "namespaces": [ {"type": "pid"}, {"type": "ipc"}, {"type": "uts"}, {"type": "mount"}, {"type": "network"}, ], "maskedPaths": [ "/proc/acpi", "/proc/asound", "/proc/kcore", "/proc/keys", "/proc/latency_stats", "/proc/timer_list", "/proc/timer_stats", "/proc/sched_debug", "/sys/firmware", "/proc/scsi", ], "readonlyPaths": [ "/proc/bus", "/proc/fs", "/proc/irq", "/proc/sys", "/proc/sysrq-trigger", ], }, "hooks": {"createContainer": [{"path": "/kind/bin/mount-product-files.sh"}]}, } return json.dumps(spec, indent=2) # Keep old name as alias for backward compatibility def generate_cri_base_json(): """Deprecated: Use generate_high_memlock_spec_json() instead.""" return generate_high_memlock_spec_json() def _generate_containerd_config_patches( deployment_dir: Path, has_high_memlock: bool ) -> str: """Generate containerdConfigPatches YAML for custom runtime handlers. This configures containerd to have a runtime handler named 'high-memlock' that uses a custom OCI base spec with unlimited RLIMIT_MEMLOCK. """ if not has_high_memlock: return "" spec_path = deployment_dir.joinpath(constants.high_memlock_spec_filename).resolve() runtime_name = constants.high_memlock_runtime plugin_path = 'plugins."io.containerd.grpc.v1.cri".containerd.runtimes' return ( "containerdConfigPatches:\n" " - |-\n" f" [{plugin_path}.{runtime_name}]\n" ' runtime_type = "io.containerd.runc.v2"\n' f' base_runtime_spec = "{spec_path}"\n' ) # Note: this makes any duplicate definition in b overwrite a def merge_envs(a: Mapping[str, str], b: Mapping[str, str]) -> Mapping[str, str]: result = {**a, **b} return result def _expand_shell_vars( raw_val: str, env_map: Optional[Mapping[str, str]] = None ) -> str: # Expand docker-compose style variable substitution: # ${VAR} - use VAR value or empty string # ${VAR:-default} - use VAR value or default if unset/empty # ${VAR-default} - use VAR value or default if unset if env_map is None: env_map = {} if raw_val is None: return "" match = re.search(r"^\$\{([^}]+)\}$", raw_val) if match: inner = match.group(1) # Check for default value syntax if ":-" in inner: var_name, default_val = inner.split(":-", 1) return env_map.get(var_name, "") or default_val elif "-" in inner: var_name, default_val = inner.split("-", 1) return env_map.get(var_name, default_val) else: return env_map.get(inner, "") return raw_val def envs_from_compose_file( compose_file_envs: Mapping[str, str], env_map: Optional[Mapping[str, str]] = None ) -> Mapping[str, str]: result = {} for env_var, env_val in compose_file_envs.items(): expanded_env_val = _expand_shell_vars(env_val, env_map) result.update({env_var: expanded_env_val}) return result def envs_from_environment_variables_map( map: Mapping[str, str] ) -> List[client.V1EnvVar]: result = [] for env_var, env_val in map.items(): result.append(client.V1EnvVar(env_var, env_val)) return result # This needs to know: # The service ports for the cluster # The bind mounted volumes for the cluster # # Make ports like this: # extraPortMappings: # - containerPort: 80 # hostPort: 80 # # optional: set the bind address on the host # # 0.0.0.0 is the current default # listenAddress: "127.0.0.1" # # optional: set the protocol to one of TCP, UDP, SCTP. # # TCP is the default # protocol: TCP # Make bind mounts like this: # extraMounts: # - hostPath: /path/to/my/files # containerPath: /files def generate_kind_config(deployment_dir: Path, deployment_context): compose_file_dir = deployment_dir.joinpath("compose") # TODO: this should come from the stack file, not this way pod_files = [p for p in compose_file_dir.iterdir() if p.is_file()] parsed_pod_files_map = parsed_pod_files_map_from_file_names(pod_files) port_mappings_yml = _generate_kind_port_mappings(parsed_pod_files_map) mounts_yml = _generate_kind_mounts( parsed_pod_files_map, deployment_dir, deployment_context ) # Check if unlimited_memlock is enabled unlimited_memlock = deployment_context.spec.get_unlimited_memlock() # Generate containerdConfigPatches for RuntimeClass support containerd_patches_yml = _generate_containerd_config_patches( deployment_dir, unlimited_memlock ) # Add high-memlock spec file mount if needed if unlimited_memlock: spec_mount = _generate_high_memlock_spec_mount(deployment_dir) if mounts_yml: # Append to existing mounts mounts_yml = mounts_yml.rstrip() + "\n" + spec_mount else: mounts_yml = f" extraMounts:\n{spec_mount}" # Build the config - containerdConfigPatches must be at cluster level (before nodes) config = "kind: Cluster\n" "apiVersion: kind.x-k8s.io/v1alpha4\n" if containerd_patches_yml: config += containerd_patches_yml config += ( "nodes:\n" "- role: control-plane\n" " kubeadmConfigPatches:\n" " - |\n" " kind: InitConfiguration\n" " nodeRegistration:\n" " kubeletExtraArgs:\n" ' node-labels: "ingress-ready=true"\n' f"{port_mappings_yml}\n" f"{mounts_yml}\n" ) return config