Your backup tool doesn't validate restores. Kymaros does.

Velero, Kasten, and TrilioVault are excellent backup tools. But none of them test whether a restore actually produces a working application. That's the gap Kymaros fills.

Feature comparison

CapabilityVeleroKasten K10TrilioVaultKymaros
Backup K8s resources
Backup persistent volumes
Scheduled backups
Automated restore testing
Sandbox isolation
Health check validation
Real RTO measurement
Confidence scoring (0-100)
Regression detection
Compliance reports

Kymaros is not a replacement for your backup tool. It's the validation layer that sits on top. Use alongside Velero, Kasten, or TrilioVault.

Kymaros + Velero

Free

Velero handles your backups. Kymaros validates they restore correctly. The native integration triggers a Velero restore into an isolated sandbox, runs your health checks, and produces a scored RestoreReport.

restoretest.yaml
apiVersion: kymaros.io/v1alpha1
kind: RestoreTest
metadata:
  name: api-backup-test
spec:
  backupSource:
    provider: velero
    backupName: api-nightly
    namespace: velero
  schedule: "0 2 * * *"
  sandbox:
    networkPolicy: deny-all
  healthChecks:
    - name: api-ready
      type: httpGet
      path: /healthz
      port: 8080

Kymaros + Kasten K10

Team

Kasten K10 manages your backup policies and snapshots. Kymaros integrates via the Kasten adapter to restore snapshots into sandboxes and validate them. Available in the Team tier.

restoretest.yaml
apiVersion: kymaros.io/v1alpha1
kind: RestoreTest
metadata:
  name: payments-k10-test
spec:
  backupSource:
    provider: kasten
    restorePointName: payments-daily
    namespace: kasten-io
  schedule: "0 3 * * *"
  sandbox:
    networkPolicy: deny-all
  healthChecks:
    - name: db-check
      type: exec
      container: postgres
      command: ["pg_isready", "-U", "app"]

Kymaros + TrilioVault

Team

TrilioVault protects your Kubernetes applications with application-centric backups. Kymaros validates TrilioVault restores using the same sandbox isolation and scoring engine. Available in the Team tier.

restoretest.yaml
apiVersion: kymaros.io/v1alpha1
kind: RestoreTest
metadata:
  name: frontend-trilio-test
spec:
  backupSource:
    provider: trilio
    backupPlanName: frontend-plan
    namespace: trilio-system
  schedule: "0 4 * * *"
  sandbox:
    networkPolicy: deny-all
  healthChecks:
    - name: frontend-alive
      type: httpGet
      path: /
      port: 3000

Start validating your restores

Kymaros works alongside your existing backup tool. Install in 2 minutes. Your first RestoreReport arrives by morning.