Manage Kubernetes pods
hila uses Kubernetes to orchestrate containerized services in pods. To view and manage those pods, you can use the following commands.
View all pods
To view all pods run:
kubectl get pods
Restart a pod
To restart a pod run:
kubectl delete pod <pod-name>
Replace <pod-name> with the name of the pod you want to restart. Kubernetes will automatically recreate the pod.
ON THIS PAGE