From 812226b2b72f4bb3ede56fc67229fb876c88c383 Mon Sep 17 00:00:00 2001 From: "halil.cakal" Date: Tue, 26 Aug 2025 09:37:41 +0100 Subject: [PATCH] update readme.md for cps charts - update release name to cps for helm installation, as per requirement it will support only one release which is cps - update port forwarding commands that are now uses the deployed services: cps-cps-and-ncmp-cps and cps-cps-and-ncmp-dmi-stub - update get all command with correct label Issue-ID: CPS-2956 Change-Id: Ia864d38b07f8a12f5a3d1b1d6a5358ada8377e23 Signed-off-by: halil.cakal --- cps-charts/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cps-charts/README.md b/cps-charts/README.md index c2955cc593..b28e6a2304 100644 --- a/cps-charts/README.md +++ b/cps-charts/README.md @@ -10,18 +10,18 @@ This Helm chart deploys the **CPS** and **NCMP** ecosystem along with PostgreSQL ## Installation To install the chart into the **default namespace**: ```bash -helm install cps-and-ncmp ./ +helm install cps ./ ``` Replace with the path to this Helm chart. You can verify the deployment using: ```bash -kubectl get all -l app.kubernetes.io/instance=cps-and-ncmp +kubectl get all -l app=cps-and-ncmp ``` --- ## Uninstallation To uninstall the chart and delete all related resources: ```bash -helm uninstall cps-and-ncmp +helm uninstall cps ``` --- ## Port Forwarding @@ -29,14 +29,14 @@ You can access the services locally using kubectl port-forward. --- ## CPS and NCMP (API) Service ```bash -kubectl port-forward service/cps-and-ncmp 8080:8080 +kubectl port-forward service/cps-cps-and-ncmp-cps 8080:8080 ``` Once port forwarding is active, you can access the CPS/NCMP API at: http://localhost:8080 --- ## DMI Stub Service ```bash -kubectl port-forward service/dmi-stub 8092:8092 +kubectl port-forward service/cps-cps-and-ncmp-dmi-stub 8092:8092 ``` Access the DMI stub API at: http://localhost:8092 @@ -54,7 +54,7 @@ Password: cpsr0cks! This chart includes default settings suitable for local development and testing. You can customize values using a custom values.yaml file or by passing --set parameters at install time. Example: ```bash -helm install cps-and-ncmp ./ --set cps.replicas=1 +helm install cps ./ --set cps.replicas=1 ``` --- ## Chart Components -- 2.16.6