dependabot[bot] on go_modules
chore(deps): bump github.com/ha… (compare)
dependabot[bot] on go_modules
dependabot[bot] on go_modules
chore(deps): bump github.com/ha… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/fu… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/pr… (compare)
dependabot[bot] on go_modules
chore(deps): bump google.golang… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/ha… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/Sh… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/Sh… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/ha… (compare)
dependabot[bot] on go_modules
chore(deps): bump github.com/si… (compare)
vcastellm on 4.x
Remove old UI (#984) (compare)
vcastellm on remove_old_ui
vcastellm on internal_plugin
vcastellm on 4.x
Convert shell plugin to interna… (compare)
vcastellm on 4.x
vcastellm on master
Fix typo t co -Merge branch 'master' of … (compare)
vcastellm on master
More variety to testing infra (… (compare)
vcastellm on improve_test
vcastellm on improve_test
Test jobs (compare)
Hi
i am using dkron 3.0.x. Got dkron server on VM1(docker), dkron agent on VM1(dkron service), dkron agent on VM2(dkron service). I have two issues i came across.
Any suggestions please. Thanks
# webhook-url: https://hooks.slack.com/services/XXXXXX/XXXXXXX/XXXXXXXXXXXXXXXXXXXX
# webhook-payload: "payload={\"text\": \"{{.Report}}\", \"channel\": \"#foo\"}"
# webhook-headers: Content-Type:application/x-www-form-urlencoded
# mail-host: email-smtp.eu-west-1.amazonaws.com
# mail-port: 25
# mail-username": mailuser
# mail-password": mailpassword
# mail-from": cron@example.com
# mail-subject_prefix: [Dkron]
Hi, I'm running 3 dkron nodes using docker-compose like this:
dkron:
container_name: teamprovement_dkron
image: dkron/dkron:v3.1.10
ports:
- 8083:8080
- 8946
- 6868
environment:
- GODEBUG=netdns=go
volumes:
- ./volumes/dkron/:/dkron.data
command: agent --server --log-level=debug --bootstrap-expect=1 --data-dir=/dkron.data --node-name=avantrack
networks:
- avantracker
dkron-server:
container_name: teamprovement_dkron_server
image: dkron/dkron:v3.1.10
ports:
- 8080
- 8946
- 6868
environment:
- GODEBUG=netdns=go
command: agent --server --retry-join=dkron:8946 --log-level=debug --bootstrap-expect=3 --node-name=avantrack-server
networks:
- avantracker
dkron-agent:
container_name: teamprovement_dkron_agent
image: dkron/dkron:v3.1.10
ports:
- 8946
- 6868
environment:
- GODEBUG=netdns=go
command: agent --retry-join=dkron:8946 --log-level=debug --tag agent=true --node-name=avantrack-agent
networks:
- avantracker
All of them start fine, but after a couple of hours I get level=fatal msg="dkron: failed to establish leadership" error="cron is already configured, can not start scheduler"
Any help please?