Llama-3.3-70B-Instruct and Llama-3.1-8B-Instruct, allowing you to switch between them almost instantly. Each configuration occupies space on the node, so different bundles contain different sets of configurations. A copy of Llama-3.3-70B-Instruct with a batch size of 4 and a sequence length of 16k represents one configuration. For the bundles that SambaNova provides, see Supported models and bundles.
SambaStack v2.0.2 introduces a new set of Kubernetes custom resources (CRs) to manage how bundles are deployed. The CRs in older versions of SambaStack are deprecated; however, they remain functional until September 30, 2026. Model bundles built using the deprecated CRs will need to be migrated to the new resource model.
A bundle is optional. To serve a single model, pair it with a model profile and deploy it directly. Create a bundle when you want to serve several models as one unit, configure speculative decoding, or validate and share a named configuration.
Terminology
Resource architecture
This section covers the resource structure used when creating custom deployments. All of these resources useapiVersion: sambanova.ai/v1alpha1.
Every node is tagged with its role. Nodes tagged provided have dashed borders; they come with the SambaStack installation and you reference them by name. Nodes tagged you author have solid borders; they are the resources you write. The rounded node tagged not a CR is not a custom resource at all, but a single Model and ModelProfile pairing, which corresponds to one entry in spec.modelConfigs.
The resources divide responsibility as follows:
- Pef - Registers a compiled executable and the metadata describing what it supports, including its model architecture, batch size, and maximum sequence length.
- ModelProfile - Defines how a model architecture can be run: which PEFs it uses, which features it supports, and the batch sizes available at each sequence length tier.
- Model - Defines which checkpoints are available for each architecture, along with the tokenizer to use.
- ModelBundle - Combines one or more model and profile pairs into a single named, deployable unit. Optional.
- ModelDeployment - Instantiates one or more replicas on the cluster, either from a bundle or from an inline model and profile pair.
- Deploy a single model by pairing it with a profile, without creating a bundle
- Reuse one profile across every model and checkpoint that shares its architecture, including custom checkpoints for fine-tuned models
- Serve a custom checkpoint by adding a
Modelresource only, leaving the profile untouched - Group several models into one validated, shareable unit when you need them served together
- Update checkpoints without modifying profiles or deployment configurations
- Deploy the same configuration with different replica counts
Checkpoint paths are never declared in a bundle or a deployment. The operator resolves them from the
Model you reference, either through the <model-name>[:<arch>][:<version>] reference or through modelSettings.checkpointOverrides.Compatibility between a checkpoint and a profile is defined by model_arch, but the operator does not verify it. Select a checkpoint whose architecture is compatible with the profile you reference.Identify available models and profiles
Before authoring a deployment, identify the models and profiles available in your cluster and determine which pair together.1
List available models
List the models and note the architecture keys under each model’s Example:
spec.checkpoints:- Hosted
- On Premise
These commands list Kubernetes resource names (
metadata.name), which are not the names you send to the inference API. Use the serving name from spec.name in requests. See Supported models and bundles.2
List available profiles
List the profiles and note the Output:
model_arch value of each:- Hosted
- On Premise
3
Match a profile to a model
View a profile to confirm its architecture, features, and batching support:A profile can be used with a model when the profile’s
- Hosted
- On Premise
model_arch value matches one of the architecture keys under the model’s spec.checkpoints. The operator does not verify this pairing, so confirm it yourself before deploying. Review the profile for:model_arch- The architecture the profile targetsfeatures- Optional features the profile’s PEFs supportbatchingConfigs- Named batching configurations, each mapping sequence length tiers to their batch sizespefs- The PEF versions the profile references
Choose a workflow
Deploy a single model
Pair a model with a profile and deploy it directly, without a bundle
Deploy a bundle
Serve a bundle that SambaNova provides, or one you authored
Create a custom bundle
Combine several models and profiles into one named, validated unit
Deploying custom checkpoints
Convert, upload, and serve your own custom or fine-tuned checkpoint
High-throughput vs. high-interactivity
Choose between the two dedicated deployment configurations
Migrating bundle configuration
Migrate bundles built with the deprecated custom resources

