Artifact Manifest

View as Markdown

This section provides a comprehensive list of all components required for NVIDIA Cloud Functions (NVCF) Self-Hosted deployment for basic inference. Additional components are needed for Low Latency Streaming (Simulation).

Artifacts Overview

The following inventories list the artifacts for an inference-only self-hosted NVCF deployment. Artifacts are grouped by deployment plane and type.

Artifact version compatibility

Newer artifact versions might be available. Each NVCF stack release is QA-qualified with the artifact versions shown on this page for that stack. Use the compatibility matrix to choose self-managed, compute-plane, and observability releases that are qualified to run together. NVIDIA cannot guarantee compatibility when you substitute other artifact versions.

Prepare Helm charts for Helmfile

The self-managed Helmfile bundles currently expect NVCF charts in an OCI registry. Chart distributions that start with https:// are Helm repository charts. Before deploying with Helmfile, copy each required repository chart version into the OCI registry configured by global.helm.sources in the Helmfile bundles.

The following example copies one public NVCF chart into an OCI registry:

export CHART_NAME="helm-nvcf-api"
export CHART_VERSION="1.22.5"
export TARGET_REGISTRY="<registry-host>"
export TARGET_REPOSITORY="<repository>"
helm repo add nvcf https://helm.ngc.nvidia.com/nvidia/nvcf
helm repo update
helm pull "nvcf/${CHART_NAME}" --version "${CHART_VERSION}"
helm registry login "${TARGET_REGISTRY}"
helm push "${CHART_NAME}-${CHART_VERSION}.tgz" \
"oci://${TARGET_REGISTRY}/${TARGET_REPOSITORY}"

Repeat this process for every required chart with an https:// distribution. Copy required charts with an nvcr.io distribution into the same target repository so Helmfile can resolve all NVCF charts from one source. Configure the stack environment with that OCI location:

global:
helm:
sources:
registry: "<registry-host>"
repository: "<repository>"

See Image Mirroring for additional registry examples.

Supporting images that ship from Docker Hub

The NATS configuration reloader and the account-bootstrap Kubernetes utilities are not republished under the public nvidia/nvcf catalog, so they default to their upstream Docker Hub source:

ValueDefault image
nats.reloader.imagedocker.io/natsio/nats-server-config-reloader:0.24.0
api.accountBootstrap.imagedocker.io/alpine/k8s:1.37.0

A public-catalog install needs no configuration for these two images. Verify that your cluster can reach Docker Hub. If your egress to Docker Hub is authenticated or rate-limited, add the pull secret to global.imagePullSecrets.

If you have mirrored both images into your own registry, redirect them from your environment file (deploy/stacks/self-managed/environments/<environment>.yaml). Set registry and repository together, because each key falls back to its own Docker Hub default rather than to global.image. You do not need to edit deploy/stacks/self-managed/global.yaml.gotmpl.

nats:
reloader:
image:
registry: <your-registry>
repository: <your-repository>/nats-server-config-reloader
tag: "0.24.0"
api:
accountBootstrap:
image:
registry: <your-registry>
repository: <your-repository>/alpine-k8s
tag: "1.37.0"

Override the Cassandra images

The Cassandra server and its dynamic seed discovery container take the same override keys, but they default to global.image. Set them when your registry uses a different path or tag than the cassandra default under global.image.repository:

cassandra:
image:
registry: nvcr.io
repository: nvidia/nvcf/cassandra
dynamicSeedDiscovery:
image:
registry: nvcr.io
repository: nvidia/nvcf/cassandra

Every registry, repository, and tag key is optional. Any key you leave unset keeps its default: for Cassandra, registry and repository fall back to global.image.registry and global.image.repository; for the reloader and account-bootstrap images they fall back to the Docker Hub coordinates above. tag falls back to the version the stack pins, or to the chart’s own default when the stack pins none.

Use the version listed in the artifact table. Verify that your cluster can reach the registry you point each image at. If it requires authentication, add its pull secret to global.imagePullSecrets.

The current Cassandra initialization hook uses the nvcf-cassandra-migrations image, and the current NATS chart renders NKeys as Secrets without an nkey job. Their legacy cassandra.initialization.image and nats.nkeyJob.image values do not control rendered workloads. Using alpine-k8s for those operations requires chart support rather than a configuration-only override.

Some supporting components such as the GPU Operator, OpenBao, NATS, Cassandra, etc. can alternatively be pulled directly from public NGC Catalog or other public opensource repositories if desired.

The following tables list the complete artifact inventory.

Stack releases

StackVersionSource tag
Self-managed (control plane)1.0.1deploy/stacks/self-managed/v1.0.1
Compute plane1.0.0deploy/stacks/nvcf-compute-plane/v1.0.0
Observability1.0.0deploy/stacks/observability/v1.0.0

Control plane Helm charts

ArtifactVersionStackRequiredDescriptionDistributionSource code
helm-admin-token-issuer-proxy1.5.3self-managedRequiredDeploys the admin token issuer proxy.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-admin-token-issuer-proxy:1.5.3GitHub
helm-nvcf-api1.27.1self-managedRequiredDeploys the NVCF API service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-api:1.27.1
helm-nvcf-api-keys1.8.0self-managedRequiredDeploys the API key management service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-api-keys:1.8.0GitHub
helm-nvcf-cassandra0.21.3self-managedRequiredDeploys Cassandra and its initialization jobs.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-cassandra:0.21.3GitHub / Upstream
helm-nvcf-cert-manager0.1.0self-managedRequiredDeploys the NVCF cert-manager configuration.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-cert-manager:0.1.0GitHub / Upstream
helm-nvcf-ess-api1.8.2self-managedRequiredDeploys the Encrypted Secrets Service API.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-ess-api:1.8.2
helm-nvcf-function-autoscaler0.5.2self-managedRequiredDeploys the function autoscaler for observability-driven scaling.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-function-autoscaler:0.5.2GitHub
helm-nvcf-grpc-proxy1.7.4self-managedRequiredDeploys the gRPC proxy service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-grpc-proxy:1.7.4GitHub
helm-nvcf-invocation-service1.6.1self-managedRequiredDeploys the HTTP invocation service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-invocation-service:1.6.1GitHub
helm-nvcf-llm-api-gateway1.4.3self-managedOptionalDeploys the OpenAI-compatible LLM API gateway.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-llm-api-gateway:1.4.3GitHub
helm-nvcf-llm-request-router1.14.1self-managedOptionalDeploys the LLM request router.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-llm-request-router:1.14.1GitHub
helm-nvcf-nats0.8.4self-managedRequiredDeploys NATS messaging for the control plane.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-nats:0.8.4GitHub / Upstream
helm-nvcf-nats-auth-callout-service1.2.1self-managedRequiredDeploys the NATS authorization callout service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-nats-auth-callout-service:1.2.1GitHub
helm-nvcf-notary-service1.6.0self-managedRequiredDeploys the notary service for signing and validation.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-notary-service:1.6.0
helm-nvcf-nvct-api1.6.0self-managedRequiredDeploys the NVCF tenant API service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-nvct-api:1.6.0
helm-nvcf-openbao-server0.32.6self-managedRequiredDeploys OpenBao secret management.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-openbao-server:0.32.6GitHub / Upstream
helm-nvcf-pki0.1.0self-managedOptionalProvisions the OpenBao-backed ClusterIssuer for NVCF service TLS.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-pki:0.1.0GitHub
helm-nvcf-rate-limiter1.2.1self-managedRequiredDeploys request rate limiting for supported invocation paths.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-rate-limiter:1.2.1GitHub
helm-nvcf-sis2.4.0self-managedRequiredDeploys the Spot Instance Service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-sis:2.4.0
helm-nvcf-state-metrics1.0.2self-managedRequiredDeploys NVCF state metrics for observability.Publication pending
helm-nvcf-ui1.1.2self-managedOptionalDeploys the optional NVCF UI admin panel.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-ui:1.1.2
helm-nvcf-vanity-gateway0.5.0self-managedOptionalDeploys the optional vanity hostname gateway.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvcf-vanity-gateway:0.5.0GitHub
helm-reval1.4.1self-managedRequiredDeploys the function revalidation service.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-reval:1.4.1GitHub
nvcf-example-dashboards1.6.0self-managedOptionalDeploys example Grafana dashboards for NVCF telemetry.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-example-dashboards:1.6.0
nvcf-gateway-routes1.18.2self-managedRequiredDeploys Gateway API routes for NVCF services.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-gateway-routes:1.18.2GitHub
nvcf-observability-reference-stack1.10.0self-managedOptionalDeploys a reference observability backend for evaluation.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-observability-reference-stack:1.10.0

Control plane services and images

ArtifactVersionStackRequiredDescriptionDistributionSource code
admin-token-issuer-proxy1.1.2self-managedRequiredProxies admin token requests for stack services.nvcr.io/nvidia/nvcf/admin-token-issuer-proxy:1.1.2GitHub
cassandra5.0.9-nv-2.0.5self-managedRequiredStores NVCF account, function, cluster, and service state.nvcr.io/nvidia/nvcf/cassandra:5.0.9-nv-2.0.5Upstream
cert-manager-acmesolverv1.20.2self-managedOptionalServes temporary ACME HTTP-01 domain-validation challenges.quay.io/jetstack/cert-manager-acmesolver:v1.20.2Upstream
cert-manager-cainjectorv1.20.2self-managedRequiredInjects certificate authority data into Kubernetes resources.nvcr.io/nvidia/nvcf/cert-manager-cainjector:v1.20.2Upstream
cert-manager-controllerv1.20.2self-managedRequiredReconciles certificates and issuers for the control plane.nvcr.io/nvidia/nvcf/cert-manager-controller:v1.20.2Upstream
cert-manager-startupapicheckv1.20.2self-managedRequiredVerifies that the cert-manager API is ready.nvcr.io/nvidia/nvcf/cert-manager-startupapicheck:v1.20.2Upstream
cert-manager-webhookv1.20.2self-managedRequiredValidates and converts cert-manager API resources.nvcr.io/nvidia/nvcf/cert-manager-webhook:v1.20.2Upstream
ess-agent1.4.1self-managedRequiredInjects encrypted application secrets into function workloads.nvcr.io/nvidia/nvcf/ess-agent:1.4.1GitHub
icms-service-oss0.7.2self-managedRequiredManages instance and cluster lifecycle operations.nvcr.io/nvidia/nvcf/icms-service-oss:0.7.2GitHub
k8s1.37.0self-managedRequiredProvides Kubernetes command-line utilities for deployment jobs.docker.io/alpine/k8s:1.37.0GitHub
llm-api-gateway0.14.2self-managedOptionalExposes OpenAI-compatible APIs for LLM functions.nvcr.io/nvidia/nvcf/llm-api-gateway:0.14.2GitHub
nats-box0.19.7-nonrootself-managedRequiredProvides NATS administration and diagnostic utilities.nvcr.io/nvidia/nvcf/nats-box:0.19.7-nonrootUpstream
nats-server2.14.6-alpine3.22self-managedRequiredProvides messaging for function deployment and invocation.nvcr.io/nvidia/nvcf/nats-server:2.14.6-alpine3.22Upstream
nvcf-ai-api-gateway-service1.35.1self-managedOptionalServes the optional vanity hostname gateway.nvcr.io/nvidia/nvcf/nvcf-ai-api-gateway-service:1.35.1GitHub
nvcf-api-keys-service1.9.1self-managedRequiredCreates and manages NVCF API keys.nvcr.io/nvidia/nvcf/nvcf-api-keys-service:1.9.1
nvcf-cassandra-migrations0.17.6self-managedRequiredApplies the Cassandra schemas required by NVCF services.nvcr.io/nvidia/nvcf/nvcf-cassandra-migrations:0.17.6GitHub
nvcf-ess0.5.0self-managedRequiredProvides encrypted application secrets to NVCF workloads.nvcr.io/nvidia/nvcf/nvcf-ess:0.5.0
nvcf-function-autoscaler1.21.8self-managedRequiredScales functions from NVCF workload metrics.nvcr.io/nvidia/nvcf/nvcf-function-autoscaler:1.21.8
nvcf-grpc-proxy1.33.5self-managedRequiredProxies bidirectional gRPC traffic between the control and compute planes.nvcr.io/nvidia/nvcf/nvcf-grpc-proxy:1.33.5GitHub
nvcf-invocation-service0.12.1self-managedRequiredRoutes stateless HTTP function invocation requests.nvcr.io/nvidia/nvcf/nvcf-invocation-service:0.12.1GitHub
nvcf-nats-auth-callout-service0.8.3self-managedRequiredAuthorizes NATS clients for NVCF services and workloads.nvcr.io/nvidia/nvcf/nvcf-nats-auth-callout-service:0.8.3GitHub
nvcf-notary1.14.1self-managedRequiredSigns and validates functions and cluster nodes.nvcr.io/nvidia/nvcf/nvcf-notary:1.14.1
nvcf-openbao2.6.2-nv-1.3.4self-managedRequiredStores and manages control-plane secrets.nvcr.io/nvidia/nvcf/nvcf-openbao:2.6.2-nv-1.3.4Upstream
nvcf-openbao-migrations0.19.5self-managedRequiredApplies the OpenBao configuration required by NVCF.nvcr.io/nvidia/nvcf/nvcf-openbao-migrations:0.19.5GitHub
nvcf-ratelimiter1.17.3self-managedRequiredEnforces request rate limits for supported invocation paths.nvcr.io/nvidia/nvcf/nvcf-ratelimiter:1.17.3
nvcf-service-oss1.18.0self-managedRequiredProvides the primary NVCF control-plane API.nvcr.io/nvidia/nvcf/nvcf-service-oss:1.18.0
nvcf-state-metrics-service1.23.7self-managedRequiredExports NVCF resource state as Prometheus metrics.Publication pending
nvcf-ui1.1.2self-managedOptionalServes the optional NVCF administrative interface.nvcr.io/nvidia/nvcf/nvcf-ui:1.1.2GitHub
nvcf-worker-init-oss1.2.1self-managedRequiredPrepares function resources before the user container starts.nvcr.io/nvidia/nvcf/nvcf-worker-init-oss:1.2.1GitHub
nvcf-worker-llm-credentials-oss1.1.2self-managedRequiredMaintains a current NVCF worker token for LLM function workloads.nvcr.io/nvidia/nvcf/nvcf-worker-llm-credentials-oss:1.1.2GitHub
nvcf-worker-utils-oss1.2.3self-managedRequiredProxies NATS traffic between function containers and the control plane.nvcr.io/nvidia/nvcf/nvcf-worker-utils-oss:1.2.3GitHub
nvct-service-oss1.66.0self-managedRequiredProvides tenant-scoped NVCF control-plane operations.nvcr.io/nvidia/nvcf/nvct-service-oss:1.66.0
oss-vault-k8s1.7.4self-managedRequiredIntegrates Kubernetes workloads with OpenBao secrets.nvcr.io/nvidia/nvcf/oss-vault-k8s:1.7.4
reval-server0.20.2self-managedRequiredRevalidates function state in the background.nvcr.io/nvidia/nvcf/reval-server:0.20.2GitHub
stargate0.18.0self-managedOptionalRoutes LLM requests to eligible worker instances.nvcr.io/nvidia/nvcf/stargate:0.18.0GitHub

Compute plane Helm charts

ArtifactVersionStackRequiredDescriptionDistributionSource code
csi-driver-smbsupportedIndependentOptionalProvides SMB persistent volumes for supported deployments.https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/chartsUpstream
dynamo-platform1.4.2compute-planeOptionalDeploys the optional NVIDIA Dynamo operator.https://helm.ngc.nvidia.com/nvidia/ai-dynamo/dynamo-platform:1.4.2Upstream
ebs-csi-driversupportedIndependentOptionalProvides Amazon EBS persistent volumes for EKS clusters.https://kubernetes-sigs.github.io/aws-ebs-csi-driverUpstream
gpu-operatorsupportedIndependentRequiredManages NVIDIA GPU software on Kubernetes nodes.https://helm.ngc.nvidia.com/nvidiaUpstream
grove-chartsv0.1.0-alpha.12compute-planeOptionalDeploys the optional Grove operator for topology-aware scheduling.oci://ghcr.io/ai-dynamo/grove/grove-charts:v0.1.0-alpha.12Upstream
helm-nvca-operator1.28.0compute-planeRequiredDeploys the NVCA operator and compute-plane integration.https://helm.ngc.nvidia.com/nvidia/nvcf/helm-nvca-operator:1.28.0GitHub
kai-schedulerv0.17.1compute-planeOptionalDeploys the optional KAI Scheduler.oci://ghcr.io/kai-scheduler/kai-scheduler/kai-scheduler:v0.17.1Upstream
modelexpresssupportedIndependentOptionalDistributes model weights peer-to-peer between Dynamo workers to reduce scale-out cold starts. Installed separately from the compute-plane stack.https://helm.ngc.nvidia.com/nvidia/ai-dynamoUpstream
nvcf-cluster-topology0.1.0compute-planeRequiredConfigures cluster topology resources for compute scheduling.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-cluster-topology:0.1.0GitHub
nvcf-container-cache0.25.22compute-planeOptionalDeploys container image caching on GPU cluster nodes.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-container-cache:0.25.22GitHub

Compute plane services and images

ArtifactVersionStackRequiredDescriptionDistributionSource code
crd-upgraderv0.17.1compute-planeOptionalUpgrades KAI Scheduler custom resources.ghcr.io/kai-scheduler/kai-scheduler/crd-upgrader:v0.17.1Upstream
gpu-operator-validatorsupportedIndependentRequiredValidates GPU Operator components on GPU nodes.https://catalog.ngc.nvidia.com/orgs/nvidia/teams/cloud-native/containers/gpu-operator-validatorUpstream
grove-install-crdsv0.1.0-alpha.12compute-planeOptionalInstalls Grove custom resource definitions.ghcr.io/ai-dynamo/grove/grove-install-crds:v0.1.0-alpha.12Upstream
grove-operatorv0.1.0-alpha.12compute-planeOptionalReconciles Grove topology-aware scheduling resources.ghcr.io/ai-dynamo/grove/grove-operator:v0.1.0-alpha.12Upstream
k8s-device-pluginsupportedIndependentRequiredAdvertises NVIDIA GPU resources to Kubernetes.https://catalog.ngc.nvidia.com/orgs/nvidia/teams/k8s/containers/device-pluginUpstream
kubernetes-operator1.4.2compute-planeOptionalReconciles NVIDIA Dynamo workloads on Kubernetes.nvcr.io/nvidia/ai-dynamo/kubernetes-operator:1.4.2Upstream
modelexpress-serversupportedIndependentOptionalServes model weights to Dynamo workers over NIXL RDMA transports.https://catalog.ngc.nvidia.com/orgs/nvidia/teams/ai-dynamo/containers/modelexpress-serverUpstream
nats2.10.21-alpinecompute-planeOptionalProvides messaging for the optional NVIDIA Dynamo operator.docker.io/library/nats:2.10.21-alpineUpstream
nvca3.10.0compute-planeRequiredRegisters GPU clusters and orchestrates deployments in-cluster.nvcr.io/nvidia/nvcf/nvca:3.10.0GitHub
nvca-operator3.10.0compute-planeRequiredReconciles NVCA resources and compute-plane configuration.nvcr.io/nvidia/nvcf/nvca-operator:3.10.0
nvcf-container-cachev1.1.36compute-planeOptionalCaches container image layers on GPU cluster nodes.nvcr.io/nvidia/nvcf/nvcf-container-cache:v1.1.36GitHub
nvcf-image-credential-helper0.11.1compute-planeRequiredResolves container image credentials for function workloads.nvcr.io/nvidia/nvcf/nvcf-image-credential-helper:0.11.1GitHub
nvcf-proxy-tls-certsv1.2.10compute-planeOptionalConfigures TLS trust for the optional container cache proxy.nvcr.io/nvidia/nvcf/nvcf-proxy-tls-certs:v1.2.10
operatorv0.17.1compute-planeOptionalReconciles KAI Scheduler resources.ghcr.io/kai-scheduler/kai-scheduler/operator:v0.17.1Upstream
pylon0.18.0compute-planeOptionalConnects LLM worker pods to the LLM request router.nvcr.io/nvidia/nvcf/pylon:0.18.0GitHub

Observability Helm charts

ArtifactVersionStackRequiredDescriptionDistributionSource code
nvcf-default-monitors0.2.0observabilityRequiredDeploys the default service and pod monitors for NVCF.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-default-monitors:0.2.0GitHub
nvcf-otel-collector0.2.0observabilityRequiredConfigures the OpenTelemetry Collector used by NVCF.https://helm.ngc.nvidia.com/nvidia/nvcf/nvcf-otel-collector:0.2.0GitHub
opentelemetry-operator0.122.0observabilityRequiredDeploys the OpenTelemetry Operator.https://open-telemetry.github.io/opentelemetry-helm-charts/opentelemetry-operator:0.122.0Upstream
prometheus-operator-crds31.0.1observabilityRequiredInstalls the Prometheus Operator custom resource definitions.https://prometheus-community.github.io/helm-charts/prometheus-operator-crds:31.0.1Upstream
victoria-metrics-single0.45.0observabilityRequiredDeploys the default metrics storage backend.https://victoriametrics.github.io/helm-charts/victoria-metrics-single:0.45.0Upstream

Observability services and images

ArtifactVersionStackRequiredDescriptionDistributionSource code
opentelemetry-collector-contrib0.160.0observabilityRequiredCollects and exports NVCF telemetry.ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:0.160.0Upstream
opentelemetry-operator0.158.0observabilityRequiredReconciles OpenTelemetry Collector resources.ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.158.0Upstream
victoria-metricsv1.150.0observabilityRequiredStores metrics for the default observability profile.docker.io/victoriametrics/victoria-metrics:v1.150.0Upstream

Cross-stack Helm charts

ArtifactVersionStackRequiredDescriptionDistributionSource code

Cross-stack services and images

ArtifactVersionStackRequiredDescriptionDistributionSource code
nats-server-config-reloader0.24.0compute-plane / self-managedRequiredReloads NATS configuration for the control plane and optional NVIDIA Dynamo deployment.docker.io/natsio/nats-server-config-reloader:0.24.0Upstream

Tools and deployment resources

ArtifactVersionStackDescriptionDistributionSource code
nvcf-cli1.16.2IndependentManages functions, deployments, and clusters from the command line.nvcr.io/nvidia/nvcf/nvcf-cli:1.16.2GitHub
nvcf-compute-plane-stack1.0.0compute-planeProvides the Helmfile bundle for compute-plane deployment.Publication pendingGitHub
nvcf-observability-stack1.0.0observabilityProvides the Helmfile bundle for standalone observability deployment.Publication pendingGitHub
nvcf-self-managed-stack1.0.1self-managedProvides the Helmfile bundle for control-plane deployment.nvcr.io/nvidia/nvcf/nvcf-self-managed-stack:1.0.1GitHub