We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b06a3d8 commit b349985Copy full SHA for b349985
pkg/storage/s3/s3.go
@@ -414,11 +414,6 @@ func (d *driver) ConfigEnv() (envs envvar.List, err error) {
414
envs = append(envs, envvar.EnvVar{Name: "REGISTRY_STORAGE_S3_KEYID", Value: d.Config.KeyID})
415
}
416
417
- if d.Config.ChunkSizeMiB > 4 && d.Config.ChunkSizeMiB < 5121 {
418
- chunksize := int64(d.Config.ChunkSizeMiB) * 1024 * 1024
419
- envs = append(envs, envvar.EnvVar{Name: "REGISTRY_STORAGE_S3_CHUNKSIZE", Value: chunksize})
420
- }
421
-
422
// virtualHostedStyle tells the registry to use urls in the form of
423
// bucket-name.s3-endpoint.etc.
424
// the forcePathStyle setting was introduced to control the same
0 commit comments