Credentials & Access

View as Markdown

Required Credentials

Obtain the following from Smallest.ai before installation:

Your unique license key for validation

Contact: support@smallest.ai

You’ll add this to values.yaml:

1global:
2 licenseKey: "your-license-key-here"

Credentials to pull Docker images from quay.io:

  • Username
  • Password
  • Email

Contact: support@smallest.ai

You’ll add these to values.yaml:

1global:
2 imageCredentials:
3 username: "your-username"
4 password: "your-password"
5 email: "your-email"

Download URL for ASR models

Contact: support@smallest.ai

You’ll add this to values.yaml:

1models:
2 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