Semaphore was not able to run tasks such as "create falling star" since SSH would fail.
Adding the semaphore.pub to /home/control/.ssh/authorized_keys would allow semaphore to ssh seamlessly.
setup.sh expands upon this by appending the semaphore.pub if it doesn't exist in the authorized_keys.
Terraform hangs. Using vater kill defaults to SIG-TERM which is the 'nice' way of killing a process. However this gracious kill takes time and may fail. Changed to kill -9 that will forcefully kill the terraform process.
Semaphore was not able to run tasks such as "create falling star" since SSH would fail. Adding the semaphore.pub to /home/control/.ssh/authorized_keys would allow semaphore to ssh seamlessly. setup.sh expands upon this by appending the semaphore.pub if it doesn't exist in the authorized_keys.
Terraform hangs. Using
vater kill
defaults to SIG-TERM which is the 'nice' way of killing a process. However this gracious kill takes time and may fail. Changed tokill -9
that will forcefully kill the terraform process.