mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- Refactored install.py and installer package for improved UI and navigation. - Replaced Supabase k8s manifests with a dedicated deployment script and port-wiring logic. - Added new deployment pipeline and finalization scripts in etc/. - Updated initialization scripts for Kerberos, authority, and port forwards. - Updated port mappings and tests.
9 lines
1.1 KiB
INI
9 lines
1.1 KiB
INI
<?xml version="1.0" encoding="UTF-8"?>
|
|
<portMappings>
|
|
<mapping id="dashboard" namespace="kubernetes-dashboard" target="svc/kubernetes-dashboard-kong-proxy" address="127.0.0.1" hostPort="8443" servicePort="443" protocol="TCP" description="Kubernetes Dashboard (https://127.0.0.1:8443)"/>
|
|
<mapping id="prometheus" namespace="default" target="svc/prometheus-community-kube-prometheus" address="127.0.0.1" hostPort="9090" servicePort="9090" protocol="TCP" description="Prometheus UI (http://127.0.0.1:9090)"/>
|
|
<mapping id="grafana" namespace="${NAMESPACE}" target="svc/grafana-prole" address="0.0.0.0" hostPort="3000" servicePort="80" protocol="TCP" description="Grafana UI (http://127.0.0.1:3000)"/>
|
|
<mapping id="postgres" namespace="${NAMESPACE}" target="svc/prole-db-rw" address="0.0.0.0" hostPort="5432" servicePort="5432" protocol="TCP" description="PostgreSQL (primary) (127.0.0.1:5432)"/>
|
|
<mapping id="openbao" namespace="${NAMESPACE}" target="svc/openbao" address="127.0.0.1" hostPort="8200" servicePort="8200" protocol="TCP" description="OpenBao UI (http://127.0.0.1:8200)"/>
|
|
</portMappings>
|