RetrySight Cloud staging is live.

Open Cloud
Documentation menu
Docs home

Docs enterprise

Helm

Install RetrySight Enterprise Core on Kubernetes using CDN image tarballs and the published Helm chart.

On this page
  1. minikube example
  2. Notes
  3. Next

Load Docker images from the CDN first, then install the Helm chart. The chart defaults to images.composeStyle=true so Kubernetes uses those local tags (not private GHCR).

Chart filename for Core 0.1.0-rc.5: retrysight-0.1.0-rc.5.tgz. Current file: Core downloads.

minikube example

# 1) Download the chart
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-0.1.0-rc.5.tgz -o retrysight-0.1.0-rc.5.tgz

# 2) Load Docker images from CDN (tags: retrysight/tier-core-<component>:0.1.0-rc.5)
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-postgres-0.1.0-rc.5.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-manager-0.1.0-rc.5.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-frontend-0.1.0-rc.5.tar.gz | docker load

# 3) Make images available to the cluster (minikube example)
#    Skip if your node already shares the host Docker daemon.
for c in postgres manager frontend; do
  minikube image load retrysight/tier-core-$c:0.1.0-rc.5
done

# 4) Install with CDN/local image names (composeStyle=true is the chart default; do not pull private GHCR)
helm upgrade --install retrysight ./retrysight-0.1.0-rc.5.tgz \
  --set images.composeStyle=true \
  --set images.repository=retrysight/tier-core \
  --set images.tag=0.1.0-rc.5 \
  --set images.pullPolicy=IfNotPresent

Port-forward:

kubectl port-forward svc/retrysight-frontend 8080:8080
kubectl port-forward svc/retrysight-manager 28471:28471

Notes

  • Do not set the chart to pull private GHCR for a public Core install.
  • If the node does not share the host Docker daemon, image load (or a private registry you control) is required.
  • Licensed tiers use different image repositories (retrysight/tier-analytics, tier-integration, tier-cloud) and are not public.

Next

Install the fleet agent and configure YAML.