From bcfe9f01a8a33c831b83e95cb3b9bd85a07f023c Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 21 Jan 2025 11:45:46 +0100 Subject: 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 2a6c32fcb..362da197c 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: -- cgit mrf-deployment