When I try to run a non-http workload with the default Go buildpack by putting a line like this in my Procfile:
work: bin/subscriber
I’m getting this error from the kubernetes pod:
ERROR: failed to launch: determine start command: ││ process type web was not found
Which makes sense, because I don’t have a web process.
It looks like I can start a different workload from the docker image locally by passing in the process name like this:
docker run my-image work
Is there a way to override the command somewhere in the waypoint config? Or a way to specify which process to run from the Procfile?