From 5518e818be3e0635dd27462be0f8f13299888dc1 Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Thu, 19 Feb 2026 04:22:57 +0200 Subject: [PATCH] Deploy the app in sandbox ns not sandbox-gitlab --- .gitlab-ci.yml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9be2227..bc0657e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ variables: IMAGE_REPO: "$CI_REGISTRY_IMAGE" TAG: "${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHORT_SHA}" RELEASE: "open-meteo-service-gitlab" - NAMESPACE: "sandbox-gitlab" + NAMESPACE: "sandbox" CHART_PATH: "./open-meteo-service" VALUES_FILE: "./values.yaml" diff --git a/README.md b/README.md index cbc0ca0..68c8cbe 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ The pipeline consists of two stages: **build** and **deploy**. - Commits the change with message: `ci: bump image tag to [skip ci]` - Pushes back to the repository using `CI_JOB_TOKEN` for authentication - **Helm Deployment**: - - Deploys to namespace: `sandbox-gitlab` + - Deploys to namespace: `sandbox` - Release name: `open-meteo-service-gitlab` - Uses the updated values.yaml file from the workspace - Waits for deployment to be ready (5-minute timeout) @@ -147,7 +147,7 @@ The pipeline includes safeguards to prevent infinite pipeline triggers: - **Cluster**: External k3s homelab cluster (not ephemeral) - **Runner**: Self-hosted GitLab runner tagged with `homelab` -- **Namespace**: `sandbox-gitlab` (separate from ArgoCD/Harbor setups) +- **Namespace**: `sandbox` (separate from ArgoCD/Harbor setups) - **Ingress**: Configured for `open-meteo-gitlab.dvirlabs.com` (see values.yaml) ### Viewing Pipeline Status @@ -163,11 +163,11 @@ To deploy manually with a specific tag: ```bash # Option 1: Deploy using updated values.yaml helm upgrade --install open-meteo-service-gitlab ./open-meteo-service \ - -n sandbox-gitlab --create-namespace + -n sandbox --create-namespace # Option 2: Override tag via --set helm upgrade --install open-meteo-service-gitlab ./open-meteo-service \ - -n sandbox-gitlab --create-namespace \ + -n sandbox --create-namespace \ --set image.tag=main-a1b2c3d ```