mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16:34:31 +00:00
- Monitoring: Migrated from manual Grafana/Prometheus manifests to kube-prometheus-stack based setup in etc/init_monitoring.sh. Removed old manifest files from deploy/ and k8s/. - Installer Core: Refactored installer with new modules for actions, environment handling, and UI screens. Enhanced Milestone logic to support advanced configuration (ArgoCD, Registry namespaces, Kerberos flags, etc.). - Service & Init Scripts: Updated multiple initialization scripts (init_*.sh) for better integration with OpenBao, Kerberos, and the new monitoring stack. Added new scripts for Nginx Ingress, Ollama parsing, and K3D route fixes. - Infrastructure: Enhanced Samba AD DC Ansible role with realm derivation, provisioning guidance, and group management. Updated K3s role tasks. - Configuration: Refined default settings in conf/ to align with the new deployment architecture. - App & Tools: Updated prole-app Swift code and prole.sh for improved environment variable handling and installation flow.
34 lines
701 B
Python
Executable File
34 lines
701 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Thin launch vehicle for the Prole installer.
|
|
|
|
Keeps legacy UI available while exposing a stable import surface for tests.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
# Keep these imports for backward-compatibility with tests that patch them.
|
|
import tkinter as tk # noqa: F401
|
|
from tkinter import ttk, scrolledtext, messagebox, filedialog # noqa: F401
|
|
from pathlib import Path # noqa: F401
|
|
|
|
from installer.ui.screens import (
|
|
ProleInstaller,
|
|
ProleController,
|
|
get_resource_path,
|
|
has_display,
|
|
main,
|
|
)
|
|
|
|
__all__ = [
|
|
"ProleInstaller",
|
|
"ProleController",
|
|
"get_resource_path",
|
|
"has_display",
|
|
"main",
|
|
]
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|