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>
157 lines
3.5 KiB
Bash
157 lines
3.5 KiB
Bash
#!/usr/bin/env bash
|
|
# Regression test: etc/init_kdc.sh should treat local registry as enabled by default in k3s mode
|
|
# (matching etc/prole_cfg.sh defaults), so it must not fail with “No registry host configured for k3s”.
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
PROLE_HOME=$(cd "$SCRIPT_DIR/../.." && pwd)
|
|
SOURCE_ETC_DIR="$PROLE_HOME/etc"
|
|
|
|
TMP_DIR=$(mktemp -d)
|
|
trap 'rm -rf "$TMP_DIR"' EXIT
|
|
|
|
WORK_DIR="$TMP_DIR/work"
|
|
BIN_DIR="$TMP_DIR/bin"
|
|
mkdir -p "$WORK_DIR/etc" "$WORK_DIR/conf" "$WORK_DIR/authority" "$BIN_DIR"
|
|
|
|
cp "$SOURCE_ETC_DIR/init_kdc.sh" "$WORK_DIR/etc/init_kdc.sh"
|
|
cp "$SOURCE_ETC_DIR/prole_cfg.sh" "$WORK_DIR/etc/prole_cfg.sh"
|
|
chmod +x "$WORK_DIR/etc/init_kdc.sh"
|
|
|
|
cat <<EOF > "$WORK_DIR/env.sh"
|
|
#!/usr/bin/env bash
|
|
export PROLE_HOME="$WORK_DIR"
|
|
export PROLE_CONF="$WORK_DIR/conf"
|
|
EOF
|
|
|
|
cat <<EOF > "$WORK_DIR/conf/prole.cfg"
|
|
[globals]
|
|
prole.home = $WORK_DIR
|
|
prole.mode = k3s
|
|
NAMESPACE = knoe-db-a0001
|
|
EOF
|
|
|
|
export KUBECTL_LOG="$TMP_DIR/kubectl.log"
|
|
export DOCKER_LOG="$TMP_DIR/docker.log"
|
|
|
|
cat <<'EOF' > "$BIN_DIR/kubectl"
|
|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
args=("$@")
|
|
printf '%s\n' "${args[*]}" >> "${KUBECTL_LOG}"
|
|
|
|
sub="${1:-}"
|
|
case "$sub" in
|
|
config)
|
|
case "${2:-}" in
|
|
current-context)
|
|
printf '%s' "docker-desktop"
|
|
exit 0
|
|
;;
|
|
use-context|get-contexts)
|
|
exit 0
|
|
;;
|
|
esac
|
|
exit 0
|
|
;;
|
|
get)
|
|
# For namespace existence checks, succeed.
|
|
if [[ "${2:-}" == "namespace" ]]; then
|
|
exit 0
|
|
fi
|
|
# For deployment checks, report missing to exercise the deploy-time timeout path.
|
|
if [[ "${2:-}" == "deploy" || "${2:-}" == "deployment" ]]; then
|
|
exit 1
|
|
fi
|
|
exit 0
|
|
;;
|
|
create)
|
|
# init_kdc.sh pipes YAML from create-secret into kubectl apply.
|
|
if [[ "${2:-}" == "secret" ]]; then
|
|
cat <<YAML
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: dummy
|
|
YAML
|
|
exit 0
|
|
fi
|
|
if [[ "${2:-}" == "namespace" ]]; then
|
|
exit 0
|
|
fi
|
|
exit 0
|
|
;;
|
|
apply)
|
|
cat >/dev/null || true
|
|
exit 0
|
|
;;
|
|
rollout|wait|exec|delete|describe|logs|patch)
|
|
exit 0
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
EOF
|
|
chmod +x "$BIN_DIR/kubectl"
|
|
|
|
cat <<'EOF' > "$BIN_DIR/docker"
|
|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
args=("$@")
|
|
printf '%s\n' "${args[*]}" >> "${DOCKER_LOG}"
|
|
|
|
case "${1:-}" in
|
|
info|build|tag|push)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
exit 0
|
|
EOF
|
|
chmod +x "$BIN_DIR/docker"
|
|
|
|
export PATH="$BIN_DIR:$PATH"
|
|
|
|
export PROLE_HOME="$WORK_DIR"
|
|
export PROLE_CONF="$WORK_DIR/conf"
|
|
export PROLE_MODE="k3s"
|
|
export PROLE_K3S_SERVER="https://k3s.example.test:6443"
|
|
|
|
# Avoid secret generation paths (python/openssl) by providing explicit values.
|
|
export PROLE_KDC_ADMIN_PASSWORD="test-admin"
|
|
export PROLE_KDC_MASTER_PASSWORD="test-master"
|
|
export PROLE_KDC_TRUST_PASSWORD="test-trust"
|
|
export PROLE_KDC_TRUST_SHARED_PASSWORD="test-shared"
|
|
|
|
if "$WORK_DIR/etc/init_kdc.sh" update >"$TMP_DIR/stdout" 2>"$TMP_DIR/stderr"; then
|
|
:
|
|
else
|
|
echo "FAILURE: init_kdc.sh update exited non-zero"
|
|
cat "$TMP_DIR/stderr"
|
|
exit 1
|
|
fi
|
|
|
|
if grep -q "No registry host configured for k3s" "$TMP_DIR/stderr"; then
|
|
echo "FAILURE: unexpected missing-registry-host error for k3s mode"
|
|
cat "$TMP_DIR/stderr"
|
|
exit 1
|
|
fi
|
|
|
|
if ! grep -q "push" "$DOCKER_LOG"; then
|
|
echo "FAILURE: expected docker push to be attempted"
|
|
cat "$DOCKER_LOG"
|
|
exit 1
|
|
fi
|
|
|
|
if ! grep -q "push k3s.example.test:5000/prole-authority:latest" "$DOCKER_LOG"; then
|
|
echo "FAILURE: expected docker push to remote k3s registry host in k3s mode"
|
|
cat "$DOCKER_LOG"
|
|
exit 1
|
|
fi
|
|
|
|
echo "SUCCESS"
|