Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

concourse-worker: add watchdog process #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ concourse_worker: no
concourse_worker_name: "{{ ansible_hostname }}"
concourse_worker_launcher_path: "{{ concourse_install_dir }}/concourse-worker"
concourse_retire_worker_path: "{{ concourse_install_dir }}/concourse-retire-worker"
concourse_worker_watchdog_sec: 10
concourse_worker_watchdog_terminate_on_repeating_start_failure: no
concourse_work_dir: "{{ concourse_install_dir }}/work"
concourse_tsa_public_key_path: "{{ concourse_install_dir }}/host_key.pub"
concourse_tsa_worker_key_path: "{{ concourse_install_dir }}/worker_key"
Expand Down
7 changes: 5 additions & 2 deletions tasks/install-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@

- name: create worker service | concourse
template:
src: concourse-worker.service.j2
dest: /etc/systemd/system/concourse-worker.service
src: "{{ item['src'] }}"
dest: "{{ item['dest'] }}"
owner: root
force: yes
become: yes
become_user: root
with_items:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

with_items could be revert ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same reason as #5 (comment)

- src: concourse-worker.service.j2
dest: /etc/systemd/system/concourse-worker.service
notify:
- restart concourse worker
2 changes: 1 addition & 1 deletion templates/concourse-retire-worker.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export {{ key }}="{{ value }}"
# If $1 PID of concourse worker is provided, do a kill instead of an api call
# Mostly used by systemd for concourse compatiility issues https://github.com/concourse/concourse/pull/3929

until ! curl --fail 127.0.0.1:7777/ping; do
until ! curl --silent --fail 127.0.0.1:7777/ping; do

if [[ -z "$1" ]]; then
{{ concourse_binary_path }} retire-worker \
Expand Down
20 changes: 20 additions & 0 deletions templates/concourse-worker.j2
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

# {{ ansible_managed }}

watchdog() {
WORKER_PID=$1

while(true); do
FAIL=0

curl --silent 127.0.0.1:8888 || FAIL=1

if [[ $FAIL -eq 0 ]]; then
/bin/systemd-notify --pid=$WORKER_PID "WATCHDOG=1";
sleep $(({{ concourse_worker_watchdog_sec }} / 2))
else
echo "watchdog: concourse-worker healthcheck failed"
sleep 1
fi
done
}

{% if concourse_worker_forward_force_accept|bool %}
iptables -P FORWARD ACCEPT
{% endif %}
Expand All @@ -10,6 +28,8 @@ iptables -P FORWARD ACCEPT
export {{ key }}="{{ value }}"
{% endfor %}

watchdog $$ &

exec {{ concourse_binary_path }} worker \
--tsa-host "{{ concourse_tsa_host }}:{{ concourse_tsa_port }}" \
--tsa-public-key {{ concourse_tsa_public_key_path }} \
Expand Down
13 changes: 13 additions & 0 deletions templates/concourse-worker.service.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
Description=concourse-worker
Requires=network-online.target
After=network-online.target
Wants=concourse-worker-watchdog.service
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no concourse-worker-watchdog.service anymore ? should be removed ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will wait for concourse to fix the issue.
Right now the PR reflect the second implementation where the watchdog is a sub-process in the background of the main concourse-worker process (`NotifyAccess=main`) but I prefer my first implementation where the watchdog was a separated process (`NotifyAccess=all`)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

currently it is a mix of both ? Sub-process is used but ext service is referenced here.

Just a reminder note, for ext service this part will be missing: https://github.com/cycloidio/ansible-concourse/pull/7/files#diff-2f8071c99c715eb05ff6fabd9fed7dd5R15

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

currently it is a mix of both ? Sub-process is used but ext service is referenced here.

Yes, I did a bunch of tests for different implementations, I must have missed some old references ^^

Just a reminder note, for ext service this part will be missing: https://github.com/cycloidio/ansible-concourse/pull/7/files#diff-2f8071c99c715eb05ff6fabd9fed7dd5R15

Good catch, I will update this PR as soon as possible to represent the ideal setup if Concourse will ever fix the issue blocking it.

Before=concourse-worker-watchdog.service

[Service]
ExecStart={{ concourse_worker_launcher_path }}
Expand All @@ -17,5 +19,16 @@ TasksMax=infinity
Delegate=yes
KillMode=process

## Watchdog
WatchdogSec={{ concourse_worker_watchdog_sec }}
NotifyAccess=main
{% if concourse_worker_watchdog_terminate_on_repeating_start_failure|bool %}
# If there is `StartLimitBurst` failed restart attempt
# within `StartLimitInterval` then force poweroff
StartLimitInterval=5min
StartLimitBurst=4
StartLimitAction=poweroff-force
{% endif %}

[Install]
WantedBy=multi-user.target