Skip to content

Commit d858adc

Browse files
committed
Try 1MB buffer size.
1 parent ad866d4 commit d858adc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy/tasks/buildah-oci-ta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ spec:
142142
- name: BYTE_BUFFER_SIZE
143143
description: The byte buffer size to use for the domain proxy.
144144
type: string
145-
default: 1024
145+
default: 10485760
146146
- name: PROXY_TARGET_WHITELIST
147147
description: Comma separated whitelist of target hosts for the domain proxy.
148148
type: string

domain-proxy/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
const (
1616
ByteBufferSizeKey = "BYTE_BUFFER_SIZE"
17-
DefaultByteBufferSize = 1024
17+
DefaultByteBufferSize = 10485760
1818
DomainSocketKey = "DOMAIN_SOCKET"
1919
DefaultDomainSocket = "/tmp/domain-socket.sock"
2020
ConnectionTimeoutKey = "CONNECTION_TIMEOUT"

0 commit comments

Comments
 (0)