From ed2815ad680974868942989539cc05e0b51cba86 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 21 Jan 2025 11:45:46 +0100 Subject: [PATCH] syz-cluster: configure the GCS emulator Adjust its options to allow the uploading of big files (that is necessary for Argo workflow artifacts). --- syz-cluster/overlays/dev/fake-gcs.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/syz-cluster/overlays/dev/fake-gcs.yaml b/syz-cluster/overlays/dev/fake-gcs.yaml index 2a6c32fcbefa..362da197c342 100644 --- a/syz-cluster/overlays/dev/fake-gcs.yaml +++ b/syz-cluster/overlays/dev/fake-gcs.yaml @@ -26,7 +26,11 @@ spec: - name: fake-gcs-server imagePullPolicy: IfNotPresent image: fsouza/fake-gcs-server - args: ["-scheme", "http", "-public-host", "fake-gcs-server.default.svc.cluster.local"] + args: [ + "-scheme", "http", + "-public-host", "fake-gcs-server.default.svc.cluster.local", + "-external-url", "http://fake-gcs-server.default.svc.cluster.local:4443" + ] ports: - containerPort: 4443 volumeMounts: