The communication key file (keychain.json) refreshes automatically once a year (31536000 sec) triggered by a scheduled task.
The automatic refresh happens without any warning in the console and this can cause issues for isolated environments where the file might need to be distributed in advance to an alternative download location.
These steps allow you to disable the scheduled task to prevent the unexpected refresh of the file.
use das; update dbo.scheduled_tasks set enabled = 0 where task like 'CommunicationKeyRotator'