Skip to main content

Required Credentials

Obtain the following from Smallest.ai before installation:
Your unique license key for validationContact: [email protected]You’ll add this to values.yaml:
global:
  licenseKey: "your-license-key-here"
Credentials to pull Docker images from quay.io:
  • Username
  • Password
  • Email
Contact: [email protected]You’ll add these to values.yaml:
global:
  imageCredentials:
    username: "your-username"
    password: "your-password"
    email: "your-email"
Download URL for ASR modelsContact: [email protected]You’ll add this to values.yaml:
models:
  asrModelUrl: "your-model-url"

Create Kubernetes Secret

Alternatively, create a secret for registry credentials:
kubectl create secret docker-registry smallest-registry \
  --docker-server=quay.io \
  --docker-username=<username> \
  --docker-password=<password> \
  --docker-email=<email> \
  -n smallest

Namespace Setup

Deploy to the default namespace:
kubectl config set-context --current --namespace=default