## Installation
To install the chart into the **default namespace**:
```bash
-helm install cps-and-ncmp ./<chart-directory>
+helm install cps ./<chart-directory>
```
Replace <chart-directory> 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
---
## 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
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 ./<chart-directory> --set cps.replicas=1
+helm install cps ./<chart-directory> --set cps.replicas=1
```
---
## Chart Components