As a Standard Stack user, you may need to stop or restart the Acrolinx Platform in the following situations:
-
After you change a configuration file.
-
To stop a user checking process.
-
To do maintenance on a language server.
You can do this with kubectl
and the following commands.
To start the Acrolinx Platform, use the following command:
kubectl -n acrolinx annotate coreplatforms acrolinx acrolinx.com/suspend-
You can use the following to wait until the Acrolinx Platform restarts again:
kubectl -n acrolinx wait coreplatform acrolinx --for condition=Ready --timeout 600
To stop the Acrolinx Platform, use the following command:
kubectl -n acrolinx annotate coreplatforms acrolinx acrolinx.com/suspend=true
You can use the following to wait until the stop is complete:
kubectl -n acrolinx wait coreplatform acrolinx --for condition=Suspended --timeout 120