Skip to content

Commit

Permalink
Increased source package size limit to 3 GB (#1068)
Browse files Browse the repository at this point in the history
## Proposed Changes
* Increase size limit for SourcePackage from 1 to 3 GB
## Release Notes
Changed size limit for SourcePackage from 1 to 3 GB
  • Loading branch information
balamut-google authored Jan 3, 2024
2 parents 7fc0ee6 + e106c8c commit 5ead659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/apis/kf/v1alpha1/source_package_validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

const (
minUploadSizeBytes = 1
maxUploadSizeBytes = 1 * 1024 * 1024 * 1024
maxUploadSizeBytes = 3 * 1024 * 1024 * 1024
)

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

0 comments on commit 5ead659

Please sign in to comment.