O supervisor espera que os subprocessos permaneçam em primeiro plano :
Programs meant to be run under supervisor should not daemonize themselves. Instead, they should run in the foreground. They should not detach from the terminal from which they are started.
Você iniciou ssh
com a -f
bandeira, que significa :
Requests ssh to go to background just before command execution.
O supervisor acha que o programa fecha e inicia uma nova instância após qualquer limitação. Ele continuará fazendo isso para sempre.
Se você remover o -f
flag, ele deverá funcionar como esperado.