Hi all, I’m having some issues getting drone on kubernetes up and running. I’ve installed both the drone and drone kubernetes runner charts. The github webhook is able to hit my ingress. However, when I make a commit to my repository, and github webhook makes a subsequent post for the push event, github says it times out on delivery.
When I look at the drone server logs, it is parsing the webhook event, but no build happens. I get the following messages in the log:
{“commit”:“3c51216f81500c7b4a0f89efae2ee56c3a42d10e”,“event”:“push”,“level”:“debug”,“msg”:“webhook parsed”,“name”:“exodus-services-tekton-test”,“namespace”:“tractsoft”,“time”:“2020-03-06T16:42:08Z”}
{“commit”:“3c51216f81500c7b4a0f89efae2ee56c3a42d10e”,“event”:“push”,“level”:“debug”,“msg”:“trigger: received”,“ref”:“refs/heads/master”,“repo”:“tractsoft/exodus-services-tekton-test”,“time”:“2020-03-06T16:42:08Z”}
The kubernetes runner never seems to pick anything up off the queue…all I get in the kubernetes runner logs is this:
time=“2020-03-06T16:22:02Z” level=debug msg=“request stage from remote server” thread=98
time=“2020-03-06T16:22:02Z” level=debug msg=“request stage from remote server” thread=99
time=“2020-03-06T16:22:32Z” level=trace msg=“http: no content returned: re-connect and re-try”
time=“2020-03-06T16:23:12Z” level=trace msg=“http: no content returned: re-connect and re-try”
I get this message in the drone server logs:
{“arch”:"",“kernel”:"",“kind”:“pipeline”,“level”:“debug”,“msg”:“manager: request queue item”,“os”:"",“time”:“2020-03-06T16:46:02Z”,“type”:“kubernetes”,“variant”:""}
Followed by this message at some point:
{“arch”:"",“kernel”:"",“kind”:“pipeline”,“level”:“debug”,“msg”:“manager: context canceled”,“os”:"",“time”:“2020-03-06T16:45:52Z”,“type”:“kubernetes”,“variant”:""}
…and that’s all I get. Any help would be appreciated.