GAP Documentation
GitHub Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage
Edit page

Daily restart of deployments

A CronJob will issue a rollout restart command on your deployments every day. In case you have multiple replicas (by default you have 2) this won’t cause any downtime.

Opting in of restarts

This is an opt-in feature, meaning you have to explicitly opt in per deployment if you want your application to be restarted every day. To opt in, add the dailyRestart property with a value of true to your deployment in gap.yaml:

name: "name-of-your-application",
...
deployments:
  web:
    dailyRestart: true
  ...