Skip to main content

Overview

Poolside certifies the following software stack for supported on-premises deployments. This section lists the certified component versions for the specified release. To see the exact components running in your environment, see View the software components in your deployment.
Support is limited to the current stable release and previous major version. Beta and pre-release deployments receive best-effort support only. Custom software versions require a separate support agreement.
Version Summary
CategoryKey Versions
Release1.20260130, January 2026
Kubernetes (RKE2)v1.33.7+rke2r1
PostgreSQL16.8
Keycloak26.5.0-0
SeaweedFS4.06
GPU Operatorv25.10.1
NVIDIA Driver580.105.08
cert-managerv1.19.2
Terraform1.8.5
Supported Operating Systems
Operating systemVersion
Ubuntu22.04 LTS
Red Hat Enterprise Linux (RHEL)9.6
Required Libraries (not included)
ComponentVersionDescription
Terraform1.8.5Infrastructure as Code
kubectlv1.33+Kubernetes CLI
yqv4.49.2+YAML processor
skopeov1.18+Container image tool
jq1.6JSON processor
Core Infrastructure
ComponentVersionDescription
RKE2v1.33.7+rke2r1Rancher Kubernetes Engine 2
Terraform Providers
ProviderVersionRegistry
hashicorp/kubernetes3.0.1registry.terraform.io
hashicorp/helm3.1.1registry.terraform.io
hashicorp/local2.6.1registry.terraform.io
hashicorp/null3.2.4registry.terraform.io
hashicorp/random3.8.0registry.terraform.io
alekc/kubectl2.1.3registry.terraform.io
Helm Charts
ChartVersionApp VersionDescription
GPU Operator25.10.1v25.10.1NVIDIA GPU management
Node Feature Discovery0.17.3v0.17.3Hardware feature detection
cert-managerv1.19.2v1.19.2Certificate management
SeaweedFS4.0.4064.06Distributed storage
Poolside Binaries (S3 Artifacts)
ComponentVersion
poolv0.2.144
splashv0.4.7
vs-extensionv1.2.6
vscode-extensionv2.23.27
Database & Identity
ContainerRepositoryTag
PostgreSQLdocker.io/postgres16.8
Keycloakdocker.io/keycloak/keycloak26.5.0-0
Storage (SeaweedFS)
ContainerRepositoryTag
SeaweedFSdocker.io/chrislusf/seaweedfs4.06
Container Registry
ContainerRepositoryTag
Docker Registrydocker.io/registry3
Utilities
ContainerRepositoryTag
BusyBoxdocker.io/busybox1.37.0-glibc
AWS CLIdocker.io/amazon/aws-cli2.33.2
cert-manager Components
ContainerRepositoryTag
cert-manager-controllerquay.io/jetstack/cert-manager-controllerv1.19.2
cert-manager-webhookquay.io/jetstack/cert-manager-webhookv1.19.2
cert-manager-cainjectorquay.io/jetstack/cert-manager-cainjectorv1.19.2
cert-manager-acmesolverquay.io/jetstack/cert-manager-acmesolverv1.19.2
cert-manager-startupapicheckquay.io/jetstack/cert-manager-startupapicheckv1.19.2
NVIDIA GPU Operator Components
ContainerRepositoryTag
GPU Operatornvcr.io/nvidia/gpu-operatorv25.10.1
GPU Operator Validatornvcr.io/nvidia/cloud-native/gpu-operator-validatorv25.10.1
NVIDIA Driver (Ubuntu)nvcr.io/nvidia/driver580.105.08-ubuntu22.04
NVIDIA Driver (RHEL)nvcr.io/nvidia/driver580.105.08-rhel9.6
CUDA Basenvcr.io/nvidia/cuda13.0.1-base-ubi9
k8s Device Pluginnvcr.io/nvidia/k8s-device-pluginv0.18.1
Container Toolkitnvcr.io/nvidia/k8s/container-toolkitv1.18.1
DCGM Exporternvcr.io/nvidia/k8s/dcgm-exporter4.4.2-4.7.0-distroless
k8s Driver Managernvcr.io/nvidia/cloud-native/k8s-driver-managerv0.9.1
MIG Managernvcr.io/nvidia/cloud-native/k8s-mig-managerv0.13.1
vGPU Device Managernvcr.io/nvidia/cloud-native/vgpu-device-managerv0.4.1
KubeVirt GPU Device Pluginnvcr.io/nvidia/kubevirt-gpu-device-pluginv1.4.0
Node Feature Discoveryregistry.k8s.io/nfd/node-feature-discoveryv0.18.2

View the software components in your deployment

Each Poolside release includes a Software Bill of Materials (SBOM) that provides a complete, versioned inventory of included software components. To inspect the exact container images and tags available in your deployment, you can query the local container registry directly:
for repo in $(curl -s "http://localhost:30500/v2/_catalog?n=1000" | jq -r '.repositories[]'); do
  echo "=== $repo ==="
  curl -s "http://localhost:30500/v2/$repo/tags/list" | jq -r '.tags[]?' 2>/dev/null
done