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.
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
...