From fc2daddf54acdc62d86e265a00dc5bb596b07edf Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Fri, 13 Mar 2026 14:11:50 +0100 Subject: [PATCH] Change UI NodePort from 30080 to 30090 Port 30080 is already allocated. Updated deploy manifests, CORS origin, and HOWTO.md references. Co-Authored-By: Claude Opus 4.6 --- HOWTO.md | 4 ++-- deploy/server.yaml | 2 +- deploy/ui.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HOWTO.md b/HOWTO.md index 67215df8..bd712903 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -309,14 +309,14 @@ The full stack is deployed to k3s via CI/CD on push to `main`. K8s manifests are cameleer namespace: ClickHouse (StatefulSet, 2Gi PVC) ← clickhouse:8123 (ClusterIP) cameleer3-server (Deployment) ← NodePort 30081 - cameleer3-ui (Deployment, Nginx) ← NodePort 30080 + cameleer3-ui (Deployment, Nginx) ← NodePort 30090 ``` ### Access (from your network) | Service | URL | |---------|-----| -| Web UI | `http://192.168.50.86:30080` | +| Web UI | `http://192.168.50.86:30090` | | Server API | `http://192.168.50.86:30081/api/v1/health` | | Swagger UI | `http://192.168.50.86:30081/api/v1/swagger-ui.html` | diff --git a/deploy/server.yaml b/deploy/server.yaml index 92b203e8..419afee2 100644 --- a/deploy/server.yaml +++ b/deploy/server.yaml @@ -51,7 +51,7 @@ spec: key: CAMELEER_UI_PASSWORD optional: true - name: CAMELEER_UI_ORIGIN - value: "http://192.168.50.86:30080" + value: "http://192.168.50.86:30090" resources: requests: memory: "256Mi" diff --git a/deploy/ui.yaml b/deploy/ui.yaml index 13f76437..781baf2c 100644 --- a/deploy/ui.yaml +++ b/deploy/ui.yaml @@ -72,4 +72,4 @@ spec: ports: - port: 80 targetPort: 80 - nodePort: 30080 + nodePort: 30090