We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14f933a commit d7547adCopy full SHA for d7547ad
2 files changed
samples/instrumentation-quickstart/cloudbuild-integration.yaml
@@ -13,6 +13,14 @@
13
# limitations under the License.
14
15
steps:
16
+ # Tail logs
17
+ - name: docker:dind
18
+ waitFor: ['-']
19
+ script: |
20
+ docker events --filter 'event=start' --format='{{.Actor.ID }}' | \
21
+ while read id; do
22
+ docker logs -f "$id" | sed "s/^/[$id] /" &
23
+ done
24
- name: golang:1.25
25
dir: samples/instrumentation-quickstart/integrationtest
26
env:
samples/instrumentation-quickstart/docker-compose.creds.yaml
@@ -32,4 +32,5 @@ services:
32
volumes:
33
- ${GOOGLE_APPLICATION_CREDENTIALS?}:${GOOGLE_APPLICATION_CREDENTIALS}:ro
34
environment:
35
- - GOOGLE_APPLICATION_CREDENTIALS
+ - GOOGLE_APPLICATION_CREDENTIALS
36
+ - GOOGLE_CLOUD_QUOTA_PROJECT
0 commit comments