mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:44:33 +00:00
Itemized changes:
1. knoe-auth: New cluster-internal KDC and SSO gateway service
- Created etc/init_knoe_auth.sh based on init_kdc.sh with knoe-auth naming
- Namespace defaults to SERVICE_NAMESPACE (knoe-system)
- ConfigMap: knoe-auth-kdc-config, Secret: knoe-auth-secrets
- Legacy cleanup removes old auth/dog/authority deployments
2. Orchestration: knoe-auth initializes before CloudNativePG
- Updated prole.sh to insert init_knoe_auth.sh as step 2 (before CNPG)
- Renumbered all subsequent initialization steps
3. Kong routing: Updated init_kong.sh to route to knoe-auth in SERVICE_NAMESPACE
4. Comment/reference updates for knoe-auth
- Updated init_common_services.sh, init_service_layer.sh, init_kerberos.sh
5. prole-db renamed to knoe-db across the entire codebase
- Renamed prole-db/ directory to knoe-db/
- Renamed all prole-db Kubernetes manifests (deploy/opentofu, k8s/)
- Renamed scripts: docker-root-knoe-db.sh, docker-run-knoe-db.sh, test-cnpg-knoe-db.sh
- Renamed etc/init_prole-db-reset.sh to etc/init_knoe-db-reset.sh
- Renamed etc/prole-db-passwwd.sh to etc/knoe-db-passwwd.sh
- Renamed mock_val counterparts accordingly
- Renamed tests/etc/test_init_prole-db-reset.sh to test_init_knoe-db-reset.sh
- Renamed docs/prole-db-documentation-mcp-architecture.md to knoe-db variant
- Renamed modes/k3d/prole-db/ to modes/k3d/knoe-db/
- Renamed prole-db.iml to knoe-db.iml
6. Configuration updates
- Updated conf/dev, conf/prod, conf/test, conf/service prole.cfg files
- Updated conf/port-mapping.cfg
- Updated etc/prole_cfg.sh and mock_val/prole_cfg.sh
- Updated service/prole.cfg
7. Kubernetes manifests and deploy configuration
- Updated deploy/opentofu/k3s ArgoCD application YAMLs
- Updated kong-configmap.yaml and kustomization.yaml
- Updated k3s/kong-config.yml and prole-resources.yaml
- Updated prole-mssql-db deployment YAMLs
- Updated supabase helm render and deploy scripts
8. Infrastructure and GCP Terraform
- Updated deploy/gcp/terraform: folders, groups, IAM, service-projects
9. Python/installer code updates
- Updated knoe/core: actions, build_context, controller, env, milestones
- Updated knoe/milestone.py
- Updated knoe/ui/screens: cfg, database, database_options, deploy, docker,
navigation, security, services, validate
- Updated knoe.spec, status.py
10. Shell script updates
- Updated etc/: build_db, init_cloudnative_pg, init_cnpg_backup,
init_db_manager, init_forgejo, init_gitlab, init_monitoring, init_openbao,
init_port_forwards, init_postgrest, init_supabase_ports, status
- Updated mock_val/ counterparts for all above scripts
- Updated prole-net/init-prole-dns.sh
- Updated bin/prole-kpf.sh, gitea/deploy.sh, supabase/deploy.sh
11. Test updates
- Updated tests/etc/: test_init_cloudnative_pg*, test_init_cnpg_backup*,
test_init_kdc*, test_init_kerberos*, test_init_kong*, test_prole_cfg*
- Updated tests/installer/: test_actions_helpers, test_cfg_save_kubecontext,
test_controller, test_core_classes, test_milestones, test_milestones_extended,
test_namespace_propagation
- Updated tests/: test_database_options, test_navigation,
test_render_supabase_hostname, test_docker_build_fix,
test_all_prole_home_fixes, silent_install_test, final_test
12. Documentation updates
- Updated docs/: DOCKER-BUILD-FIX, PROLE-CFG-SECRETS, PROLE-HOME-DIRECTORY,
build-system, patent
- Updated scan/network_description.txt
- Updated pom.xml
13. Miscellaneous script updates
- Updated root-level: _adopt_replica_pvcs, _fix_replica_merlin, _import_pi,
_patch_cluster, _prebind_pvcs, _rebind_d002, _rebind_d002b, test_resolve
- Updated scripts/generate_spec.py
Co-authored-by: Junie <junie@jetbrains.com>
96 lines
3.6 KiB
Bash
Executable File
96 lines
3.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "=============================================="
|
|
echo " Comprehensive .prole Directory Tests"
|
|
echo "=============================================="
|
|
echo ""
|
|
|
|
TESTS_PASSED=0
|
|
TESTS_TOTAL=0
|
|
|
|
test_item() {
|
|
TESTS_TOTAL=$((TESTS_TOTAL + 1))
|
|
echo -n "[$TESTS_TOTAL] $1... "
|
|
shift
|
|
if "$@" > /dev/null 2>&1; then
|
|
echo "✓"
|
|
TESTS_PASSED=$((TESTS_PASSED + 1))
|
|
return 0
|
|
else
|
|
echo "✗"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
echo "DIRECTORY STRUCTURE"
|
|
test_item "Create .prole directory" python3 -c "from pathlib import Path; (Path.home() / '.prole').mkdir(exist_ok=True)"
|
|
test_item "Create build directory" python3 -c "from pathlib import Path; (Path.home() / '.prole' / 'build').mkdir(parents=True, exist_ok=True)"
|
|
test_item "Create scan directory" python3 -c "from pathlib import Path; (Path.home() / '.prole' / 'scan').mkdir(parents=True, exist_ok=True)"
|
|
|
|
echo ""
|
|
echo "DOCKER BUILD FIX"
|
|
test_item "knoe-db directory exists" test -d knoe-db
|
|
test_item "Dockerfile exists" test -f knoe-db/Dockerfile
|
|
test_item "Build directory creation" python3 -c "from pathlib import Path; d = Path.home() / '.prole' / 'build' / 'knoe-db'; d.mkdir(parents=True, exist_ok=True); assert d.exists()"
|
|
test_item "Build directory writable" python3 -c "from pathlib import Path; f = Path.home() / '.prole' / 'build' / 'test.txt'; f.write_text('test'); f.unlink()"
|
|
|
|
echo ""
|
|
echo "NETWORK SCAN FIX"
|
|
test_item "prole-agent binary exists" test -x prole-net/prole-agent
|
|
test_item "Scan directory creation" python3 -c "from pathlib import Path; d = Path.home() / '.prole' / 'scan'; d.mkdir(parents=True, exist_ok=True); assert d.exists()"
|
|
test_item "Scan directory writable" python3 -c "from pathlib import Path; f = Path.home() / '.prole' / 'scan' / 'test.txt'; f.write_text('test'); f.unlink()"
|
|
|
|
echo ""
|
|
echo "CODE VERIFICATION"
|
|
test_item "Build uses .prole/build" grep -q "prole_home / \"build\"" knoe/core/actions.py
|
|
test_item "Scan uses .prole/scan" grep -q "prole_home / \"scan\"" knoe/core/actions.py
|
|
test_item "Docker build uses copy_build_context_dir (core)" grep -q "copy_build_context_dir(source_dir, build_dir)" knoe/core/actions.py
|
|
test_item "Docker build uses copy_build_context_dir (UI)" grep -q "copy_build_context_dir(source_dir, build_dir)" knoe/ui/screens/database.py
|
|
test_item "Scan runs with cwd" grep -q "cwd=str(scan_dir)" knoe/core/actions.py
|
|
|
|
echo ""
|
|
echo "SPEC FILE VERIFICATION"
|
|
python3 scripts/generate_spec.py > /dev/null 2>&1
|
|
test_item "Spec includes knoe-db" grep -q "knoe-db" knoe.spec
|
|
test_item "Spec includes prole-agent" grep -q "prole-agent" knoe.spec
|
|
|
|
# Cleanup
|
|
echo ""
|
|
echo "CLEANUP"
|
|
python3 << 'PYTEST'
|
|
from pathlib import Path
|
|
import shutil
|
|
prole_home = Path.home() / ".prole"
|
|
if prole_home.exists():
|
|
shutil.rmtree(prole_home)
|
|
print(" ✓ Cleaned up test directories")
|
|
PYTEST
|
|
|
|
echo ""
|
|
echo "=============================================="
|
|
echo " RESULTS: $TESTS_PASSED/$TESTS_TOTAL PASSED"
|
|
echo "=============================================="
|
|
echo ""
|
|
|
|
if [ $TESTS_PASSED -eq $TESTS_TOTAL ]; then
|
|
echo "✓✓✓ ALL PROLE HOME TESTS PASSED ✓✓✓"
|
|
echo ""
|
|
echo "FIXES IMPLEMENTED:"
|
|
echo " ✓ Docker build uses ~/.prole/build/knoe-db/"
|
|
echo " ✓ Network scan uses ~/.prole/scan/"
|
|
echo " ✓ Both work from read-only PyInstaller bundle"
|
|
echo ""
|
|
echo "DIRECTORY STRUCTURE:"
|
|
echo " ~/.prole/"
|
|
echo " ├── build/"
|
|
echo " │ └── knoe-db/ (Docker build context)"
|
|
echo " └── scan/ (Network scan working dir)"
|
|
echo ""
|
|
echo "DISK USAGE: ~2-6 MB total"
|
|
echo ""
|
|
exit 0
|
|
else
|
|
echo "✗ SOME TESTS FAILED"
|
|
exit 1
|
|
fi
|