Open renzodavid9 opened 1 year ago
It seems related with the line in here blocking the for loop: https://github.com/GoogleContainerTools/skaffold/blob/954bcf15b5ebe43a935ed504f8c96e40e3967cdf/pkg/skaffold/deploy/cloudrun/log.go#L167
/assign @jagathprakash
A Skaffold project configured with the
cloudrun
deployer, that deploys more than one Cloud Run service in a single module, only streams the logs from one of those services, the others are not printed in the console.This works as expected when we have more than one module, each with one Cloud Run service.
Expected behavior
To have the output of all the services deployed from the project streamed to the console.
Actual behavior
Only one service is doing log stream.
Information
service1.yaml:
service2.yaml
Steps to reproduce the behavior
skaffold.yaml
,service1.yaml
, andservice2.yaml
files provided above, all in the same folderskaffold dev
orskaffold run --tail
(the error is present in both)Here you'll see that only
skaffold-example-cloudrun-img-1
streamed the logs, and no output was produced forskaffold-example-cloudrun-img-2
.