For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Overview
    • Quickstart
  • Before You Deploy
    • Infrastructure Sizing
    • Manifest
  • Deployment
    • Installation Overview
    • Image Mirroring
    • Helmfile Installation
  • GPU Cluster Setup
    • GPU Cluster Setup
    • Self-Managed Clusters
  • Configuration
    • Optional Enhancements
    • LLM Function Enablement
    • Gateway Routing
    • Third-Party Registries
    • Registry Allowlist
    • Cluster Configuration
    • KAI Scheduler
  • Using Cloud Functions
    • API
    • Service Keys
    • Function Creation
    • LLM Gateway
    • Generic HTTP Function Invocation
    • gRPC Function Invocation
    • Container Functions
    • Helm Functions
    • Streaming Functions
    • CLI
  • Observability
    • Observability
    • Example Dashboards
  • Operations
    • Control Plane Operations
    • Cluster Monitoring
    • Troubleshooting
  • Runbooks
    • Runbooks
    • Key Rotation
  • Reference
    • Cluster Reference
    • gRPC Load Testing
    • gRPC Load Test SLI Guide
    • HTTP Load Testing
    • HTTP Load Test SLI Guide
    • HTTP Soak Testing
  • Development
    • Architecture Overview
    • Local Development
    • Fake GPU Operator
    • Release Process
  • Managed (Legacy)
      • NGC-Managed Clusters
      • Helm-Managed Clusters
      • Configuration
      • Monitoring
      • Reference
      • Container Cache
      • GXCache
      • KAI Scheduler
    • Function Lifecycle
    • Observability
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogoCloud Functions
On this page
  • Switching to Helm-Managed Mode
  • Configuration Parameters
  • Updating Configuration
  • Upgrading NVCA Version
  • Switching Back to NGC-Managed Mode
  • Limitations
  • Tips
  • Helm Values Reference
Managed (Legacy)Cluster Management

Helm-Managed Clusters

||View as Markdown|
Previous

NGC-Managed Clusters

Next

Configuration

By default, NVCA clusters are managed through the NGC UI (NGC-managed mode), where configuration changes are applied directly through the web interface. However, advanced users can switch to Helm-managed mode to control the NVCA backend configuration through Helm charts and GitOps practices.

By default, NVCA clusters are managed through the NGC UI (NGC-managed mode), where configuration changes are applied directly through the web interface. However, advanced users can switch to Helm-managed mode to control the NVCA backend configuration through Helm charts and GitOps practices.

When using Helm-managed mode, you must save the cluster key provided during cluster registration. This key is only shown once during the registration process and is not auto-filled in UI-generated commands. You will need to manually replace <API-KEY> placeholders with your saved key in all Helm commands.

In Helm-managed mode:

  • All cluster configuration is defined in Helm values
  • Changes are applied through helm upgrade commands
  • The NGC UI becomes read-only for cluster configuration

Switching to Helm-Managed Mode

To switch from NGC-managed to Helm-managed mode, follow these steps:

  1. Navigate to the Settings page in the NGC UI and click the Actions menu (⋮) for your cluster, then select “Switch Management Mode” from the dropdown menu. 1-switch-helm-managed.png

  2. Check the confirmation box: “I understand that management mode cannot be switched until the Helm command is run in the cluster” and copy the provided helm command. 2-helm-managed-command.png

  3. Run the helm command on your cluster’s command line.

The following command is an example template. Always use the actual command provided in the NGC UI, which will have your cluster-specific values (cluster IDs, versions) automatically filled in. You must manually replace <API-KEY> with the cluster key that was provided during cluster registration - this key is only shown once and must be saved by the user.

The ngcConfig.clusterSource parameter decides the cluster management mode.

$ helm upgrade nvca-operator -n nvca-operator \
> --create-namespace \
> -i \
> --reset-values \
> --wait \
> "https://helm.ngc.nvidia.com/nvidia/nvcf-byoc/charts/nvca-operator-1.15.4.tgz" \
> --username='$oauthtoken' \
> --password="<API-KEY>" \
> --set ngcConfig.serviceKey="<API-KEY>" \
> --set ncaID="<NCA-ID>" \
> --set clusterID="<CLUSTER-ID>" \
> --set ngcConfig.clusterSource="helm-managed" \
> --set helmManaged.cloudProvider="<CLOUD-PROVIDER>" \
> --set helmManaged.clusterRegion="<REGION>" \
> --set helmManaged.clusterGroupID="<CLUSTER-GROUP-ID>" \
> --set helmManaged.clusterGroupName="<CLUSTER-GROUP-NAME>" \
> --set helmManaged.nvcaVersion="<NVCA-VERSION>"
  1. Click “Switch Management Mode” and see the management mode switched to “Helm Chart” successfully. 3-helm-managed-success.png

Configuration Parameters

When operating in Helm-managed mode, the following parameters control the NVCF backend configuration:

ParameterDescriptionRequiredImmutable
helmManaged.cloudProviderCloud provider for the cluster (e.g., aws, gcp, azure, ON-PREM, NCP)YesYes
helmManaged.clusterRegionRegion where the cluster is deployed (e.g., us-west-1, us-east-1)YesYes
helmManaged.clusterGroupIDUnique identifier for the cluster groupYesYes
helmManaged.clusterGroupNameHuman-readable name for the cluster groupYesYes
helmManaged.nvcaVersionVersion of NVCA to deploy (e.g., 2.46.0)YesNo
helmManaged.ssaClientIDClient ID for SSA authentication (optional, can be blank)NoYes
helmManaged.clusterDescriptionOptional description of the cluster, defaults to cluster name if not providedNoNo
helmManaged.authorizedNCAIDsArray of NCA IDs authorized to access this cluster (e.g., ["nca-id-1", "nca-id-2"])NoNo
helmManaged.featureGateValuesArray of feature gates to enable (e.g., ["LogPosting", "CachingSupport"])NoNo
helmManaged.clusterAttributesArray of cluster attributes (e.g., ["CacheOptimized", "KataRuntimeIsolation"])NoNo

For the full list of available feature flags and detailed examples for all deployment modes, see the Managing Feature Flags section in the Configuration page.

Updating Configuration

When in Helm-managed mode, configuration changes must be applied through Helm commands. To update the cluster configuration:

The command below is a template example. Always refer to the NGC UI for the correct NVCA operator chart URL and version for your environment. The service key can be retrieved from your current Helm values as shown in the command.

$ helm upgrade nvca-operator -n nvca-operator \
> --reuse-values \
> "https://helm.ngc.nvidia.com/nvidia/nvcf-byoc/charts/nvca-operator-1.15.4.tgz" \
> --username='$oauthtoken' \
> --password="$(helm get values -n nvca-operator nvca-operator -o json | jq -r '.ngcConfig.serviceKey')" \
> --set helmManaged.featureGateValues='["LogPosting","CachingSupport","NewFeature"]'

Upgrading NVCA Version

To upgrade the NVCA version in Helm-managed mode:

This command is an example template. Use the upgrade command provided in the NGC UI, which will specify the correct NVCA operator version and chart URL. The service key can be retrieved from your current Helm values as shown in the command.

$ helm upgrade nvca-operator -n nvca-operator \
> --reuse-values \
> "https://helm.ngc.nvidia.com/nvidia/nvcf-byoc/charts/nvca-operator-1.15.4.tgz" \
> --username='$oauthtoken' \
> --password="$(helm get values -n nvca-operator nvca-operator -o json | jq -r '.ngcConfig.serviceKey')" \
> --set helmManaged.nvcaVersion="2.47.0"

Switching Back to NGC-Managed Mode

Before switching from Helm-managed to NGC-managed mode, ensure that your Helm configuration reflects the desired final state. When switching back, the NGC UI will take over cluster management, and any Helm-specific configuration may need to be replicated through the UI.

To switch back to NGC-managed mode:

  1. Navigate to the Settings page in the NGC UI and click the Actions menu (⋮) for your cluster, then select “Switch Management Mode” from the dropdown menu. 1-ngc-managed-from-helm-managed.png

  2. Check the confirmation box: “I understand that management mode cannot be switched until the Helm command is run in the cluster” and copy the provided helm command. 2-ngc-managed-command.png

  3. Run the helm command on your cluster’s command line.

The following is an example command. Always use the command generated in the NGC UI, which will contain your specific cluster details and the appropriate NVCA operator version. You must manually replace <API-KEY> with your saved cluster key from the original registration.

$ helm upgrade nvca-operator -n nvca-operator \
> --reset-values \
> --wait \
> "https://helm.ngc.nvidia.com/nvidia/nvcf-byoc/charts/nvca-operator-1.15.4.tgz" \
> --username='$oauthtoken' \
> --password="<API-KEY>" \
> --set ngcConfig.serviceKey="<API-KEY>" \
> --set ncaID="<NCA-ID>" \
> --set clusterID="<CLUSTER-ID>" \
> --set ngcConfig.clusterSource="ngc-managed"
  1. Click “Switch Management Mode” and see the management mode switched to “NGC” successfully. 3-ngc-managed-success.png

After switching back to NGC-managed mode, verify your cluster configuration in the NGC UI to ensure all settings are correct. You may need to manually adjust settings that were previously managed through Helm.

Limitations

When operating in Helm-managed mode:

  • The NGC UI becomes read-only for cluster configuration
  • All configuration changes must be applied through Helm commands
  • Feature flag and attribute changes require careful attention to preserve existing configuration
  • Switching between modes requires --reset-values which will reset all Helm values to defaults

Tips

  1. Save Your API Key: During cluster registration, immediately save the cluster key in a secure location. This key is only shown once and cannot be retrieved later from the UI.
  2. Version Control: Store your Helm commands or values files in version control
  3. Validation: Always verify cluster status after configuration changes using kubectl get nvcfbackend -n nvca-operator
  4. Backup: Before making major changes, record your current configuration using helm get values -n nvca-operator nvca-operator
  5. Documentation: Document any custom configuration parameters or overrides for your team

Helm Values Reference

For the full list of all nvca-operator Helm chart parameters (shared, helm-managed, and self-managed), see the Helm Values Reference.