NGC Catalog
CLASSIC
Welcome Guest
Helm Charts
Holoscan For Media PTP Monitoring Helm Chart

Holoscan For Media PTP Monitoring Helm Chart

For versions and more information, please view on a desktop device.
Logo for Holoscan For Media PTP Monitoring Helm Chart
Description
This is a Helm chart package to manage PTP monitoring deployment on a Kubernetes cluster.
Publisher
NVIDIA
Latest Version
0.1.0
Compressed Size
12.14 KB
Modified
May 28, 2025

PTP Monitoring Helm Chart

Basic Introduction

This is a Helm chart package to manage PTP Monitoring deployment on a Kubernetes cluster.

Note: This Helm chart is currently only supported on Red Hat OpenShift.

Prerequisites

  • Ensure the Prometheus and Grafana Operators are set up in order to collect and visualise the exported logs.

  • Label the openshift-ptp namespace with openshift.io/cluster-monitoring: "true".

    oc label namespace openshift-ptp openshift.io/cluster-monitoring="true"
    

Installation

Using NGC CLI and NGC Web UI

Please see the NGC Helm Charts documentation for general guidance.

Using Helm Dashboard

This Helm chart can be installed on your Kubernetes cluster using the Helm Dashboard UI once the Helm Dashboard Helm Chart is installed.

Using Helm

  1. Login to the NGC registry

    helm registry login nvcr.io
    
  2. Add repo on your local system

    helm repo add <your-repo-name> https://helm.ngc.nvidia.com/nvidia/holoscan-for-media/ '--username=$oauthtoken' --password=<API-KEY>
    

    where:

    • <your-repo-name> is a short name like holoscan-for-media to be used on your local system to indicate the chart repository on NGC specified by the URL
    • <API-KEY> is your NGC API Key
  3. Update the repo or fetch particular chart

    helm repo update
    

    or

    helm pull <your-repo-name>/ptp-monitoring
    

    where:

    • <your-repo-name> is the short name you used in the helm repo add command above
  4. Now you can see all the charts available

    helm search repo
    
  5. You are ready to install PTP Monitoring Dashboard using its Helm chart

    Install using below command

    helm install <release-name> <your-repo-name>/ptp-monitoring
    

    where:

    • <release-name> is a short name, like ptp-monitoring, which should be unique on your local system, to indicate this particular installation of this application
    • <your-repo-name> is the short name you used in the helm repo add command above
  6. After installation you can check the status

    kubectl get all -o wide
    
  7. Once the pod is running, the PTP Dashboard becomes visible on Grafana UI

  8. Other commands to manage the installed application

    helm status <release-name>
    helm get all <release-name>
    helm uninstall <release-name>
    

    where:

    • <release-name> is the short name you used in the helm install command above