This commit is contained in:
Danijel Simeunovic
2026-03-17 09:53:42 +01:00
parent e71e408c6f
commit 77bcb8fdbb
2 changed files with 10 additions and 10 deletions

View File

@@ -134,11 +134,11 @@ This repository contains the complete GitOps configuration for our Kubernetes cl
### Three-Repository Pattern ### Three-Repository Pattern
| Repository | Purpose | You Edit | | Repository | Purpose | Who Edits | How Often |
|------------|---------|----------| |------------|---------|-----------|-----------|
| **[sturdy-adventure](https://github.com/fortedigital/sturdy-adventure.git)** (this repo) | ArgoCD Applications, cluster resources | ✅ Often | | **[sturdy-adventure](https://github.com/fortedigital/sturdy-adventure.git)** (this repo) | ArgoCD Applications, cluster resources | Platform / DevOps engineers | ✅ Often |
| **[forte-helm](https://github.com/snothub/forte-helm)** | Generic Helm chart templates | ❌ Rarely | | **[forte-helm](https://github.com/snothub/forte-helm)** | Generic Helm chart templates | Platform engineers | ❌ Rarely |
| **[helm-values](git@github.com:fortedigital/helm-values.git)** | App-specific configuration & versions | ✅ Sometimes | | **[helm-values](git@github.com:fortedigital/helm-values.git)** | App-specific configuration & versions | Developers / CI pipelines | ✅ Sometimes |
### GitOps Workflow ### GitOps Workflow

View File

@@ -197,11 +197,11 @@ npm run dev
Our setup uses three repositories: Our setup uses three repositories:
| Repository | Purpose | You Edit | | Repository | Purpose | Who Edits | How Often |
|------------|---------|----------| |------------|---------|-----------|-----------|
| **forte-helm** | Helm chart templates (generic, reusable) | ❌ Rarely | | **forte-helm** | Helm chart templates (generic, reusable) | Platform engineers | ❌ Rarely |
| **helm-values** | Application configuration (image tag, env vars) | ✅ Sometimes | | **helm-values** | Application configuration (image tag, env vars) | Developers / CI pipelines | ✅ Sometimes |
| **sturdy-adventure** | ArgoCD Applications (what gets deployed) | ✅ Yes (for new apps) | | **sturdy-adventure** | ArgoCD Applications (what gets deployed) | Platform / DevOps engineers | ✅ Per new app |
### Example: Deploying "myapp" ### Example: Deploying "myapp"