Skip to main content
Use idyl scale deployment to change how many replicas IDYL should run.

1. Check the current deployment

idyl get deployment web

2. Scale up

idyl scale deployment web --replicas 3

3. Watch pods change

idyl get pod --watch

4. Scale down

idyl scale deployment web --replicas 1
To stop running replicas without deleting the deployment:
idyl scale deployment web --replicas 0

Namespace

If the deployment is not in the current namespace, pass --namespace:
idyl scale deployment web --replicas 3 --namespace production