File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,9 @@ func StorageConfig(context *RenderContext) storageconfig.StorageConfig {
93
93
}
94
94
// 5 GiB
95
95
res .BlobQuota = 5 * 1024 * 1024 * 1024
96
+ if context .Config .ObjectStorage .BlobQuota != nil {
97
+ res .BlobQuota = * context .Config .ObjectStorage .BlobQuota
98
+ }
96
99
97
100
_ = context .WithExperimental (func (ucfg * experimental.Config ) error {
98
101
if ucfg .Workspace != nil {
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ type ObjectStorage struct {
142
142
CloudStorage * ObjectStorageCloudStorage `json:"cloudStorage,omitempty"`
143
143
Azure * ObjectStorageAzure `json:"azure,omitempty"`
144
144
MaximumBackupCount * int `json:"maximumBackupCount,omitempty"`
145
+ BlobQuota * int64 `json:"blobQuota,omitempty"`
145
146
}
146
147
147
148
type ObjectStorageS3 struct {
You can’t perform that action at this time.
0 commit comments