Thank you for installing the OpenCost Helm Chart!

Your release is named: {{ .Release.Name }}

To verify that OpenCost is running, execute the following commands:

1. Check the status of the pods:
   kubectl get pods -l app.kubernetes.io/instance={{ .Release.Name }} -n {{ .Release.Namespace }}

2. Access the OpenCost UI:

   If the service is only accessible within the cluster, you can use port-forwarding:
   export SVC_NAME={{ include "opencost.fullname" . }}
   kubectl port-forward svc/$SVC_NAME 9090 -n {{ .Release.Namespace }}

   Alternatively, you can port-forward directly to the OpenCost pod:
   export POD_NAME=$(kubectl get pod -l app.kubernetes.io/instance={{ .Release.Name }} -n {{ .Release.Namespace }} -o jsonpath="{.items[0].metadata.name}")
   kubectl -n {{ .Release.Namespace }} port-forward $POD_NAME 9090

For more information, visit the OpenCost documentation:
https://www.opencost.io/docs/