From 36958c35a432d7ee46d1e931dfcc98c707dbba09 Mon Sep 17 00:00:00 2001 From: duynguyen Date: Wed, 29 Jul 2026 23:32:02 +0700 Subject: [PATCH] docs: point to cluster-platform repo for platform services cluster-bootstrap only brings up the minimal layer (argocd, metallb, envoy-gateway, storage). App/platform services now live in a separate cluster-platform repo, applied after this one finishes. --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 5e3547e..ffc40b2 100644 --- a/README.md +++ b/README.md @@ -321,3 +321,16 @@ cluster-bootstrap/ └── nfs-provisioner/ └── values.yaml # ⚠ fill in nfs.server + nfs.path before push ``` + +--- + +## Next: platform services + +This repo only brings up the minimal layer needed to make the cluster usable +(ArgoCD, LoadBalancer IPs, HTTP gateway, storage). Application/platform +services (Vault, external-secrets, Harbor, Jenkins, SonarQube, etc.) live in +the separate `cluster-platform` repo, applied after this one finishes: + +```bash +kubectl apply -f ../cluster-platform/platform-app.yaml +```