Operations

Use this page for day-to-day operations on a Kubernetes (Helm) deployment.

Common operations

Stop (scale down)

This stops the UI/API pods without uninstalling Helm releases.

kubectl scale deployment/frontend -n syntho --replicas=0
kubectl scale deployment/backend -n syntho --replicas=0
kubectl scale deployment/core -n syntho --replicas=0
circle-exclamation

Start (scale up)

Scale back to your desired replica counts:

kubectl scale deployment/frontend -n syntho --replicas=<n>
kubectl scale deployment/backend -n syntho --replicas=<n>
kubectl scale deployment/core -n syntho --replicas=<n>

Check rollout status

kubectl rollout status deployment/frontend -n syntho
kubectl rollout status deployment/backend -n syntho
kubectl rollout status deployment/core -n syntho

Restart pods

Check pods

Logs

Follow logs

Save logs

chevron-rightLog sharinghashtag

Logs can contain hostnames, workspace names, and operational details.

Share logs only via approved internal channels or directly with Syntho Support.

Last updated

Was this helpful?