Sometimes, after applying configuration changes within VMware Aria Orchestrator, it may be necessary to restart only the Orchestrator service or its associated components/pods without performing a full appliance reboot.
Note: The command "vracli vro restart" is no longer available.
VMware Aria Automation Orchestrator 8.x
VMware Aria Automation 8.x
n/a
See the below procedure for restarting vRO pods only.
First Procedure : Reinitialize each vco-app pod using Kubernetes Delete command
kubectl get pods -n prelude.kubectl delete pod -n prelude vco-app<UUID> for each pod instance.Second Procedure: Reinitialize each vco-app pod using Kubernetes SCALE/UP commands
kubectl get pods -n prelude.kubectl scale deployment orchestration-ui-app --replicas=0 -n preludekubectl scale deployment vco-app --replicas=0 -n prelude sleep 120
kubectl scale deployments orchestration-ui-app --replicas=1 -n preludekubectl scale deployment vco-app --replicas=1 -n prelude