Single-Instance Deployment

You might say

Run this service as one instance and explain the short outage during restart, while separating in-memory task risk from durable data.

Single-instance deployment keeps exactly one running replica of a service in its environment.A background service with a replica count of 1 sends requests to one running instance. A release or crash restart can make it briefly unavailable, and in-memory work that was not written to durable storage may be lost. Single-instance deployment is not the Singleton pattern and does not mean data cannot be durable: it describes the number of runtime replicas, while a database or other durable store can exist separately.
Single-Instance Deployment
Further reading