Skip to content

Commit 5ead659

Browse files
Increased source package size limit to 3 GB (#1068)
## Proposed Changes * Increase size limit for SourcePackage from 1 to 3 GB ## Release Notes Changed size limit for SourcePackage from 1 to 3 GB
2 parents 7fc0ee6 + e106c8c commit 5ead659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/apis/kf/v1alpha1/source_package_validation.go

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

2424
const (
2525
minUploadSizeBytes = 1
26-
maxUploadSizeBytes = 1 * 1024 * 1024 * 1024
26+
maxUploadSizeBytes = 3 * 1024 * 1024 * 1024
2727
)
2828

2929
// Validate checks for errors in the SourcePackage's spec or status fields.

0 commit comments

Comments
 (0)