diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-01-21 11:45:46 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-01-22 13:17:53 +0000 |
| commit | bcfe9f01a8a33c831b83e95cb3b9bd85a07f023c (patch) | |
| tree | c5808227a25132f658ad1ec5249d63af2c473505 | |
| parent | 1c803764a3f4a30941659b46414d9e9b4913e736 (diff) | |
syz-cluster: configure the GCS emulator
Adjust its options to allow the uploading of big files (that is
necessary for Argo workflow artifacts).
| -rw-r--r-- | syz-cluster/overlays/dev/fake-gcs.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
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: |
