-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix multiple s3clients in wave (#554)
* added ObjectStorageOperationsFactory Signed-off-by: munishchouhan <[email protected]> * fixed error Signed-off-by: munishchouhan <[email protected]> * added name for AwsS3Configuration Signed-off-by: munishchouhan <[email protected]> * updated s3 client name Signed-off-by: munishchouhan <[email protected]> * Update src/main/groovy/io/seqera/wave/service/aws/ObjectStorageOperationsFactory.groovy [ci skip] * Update src/main/groovy/io/seqera/wave/service/aws/ObjectStorageOperationsFactory.groovy Co-authored-by: Paolo Di Tommaso <[email protected]> --------- Signed-off-by: munishchouhan <[email protected]> Co-authored-by: Paolo Di Tommaso <[email protected]>
- Loading branch information
1 parent
8282a49
commit 4568950
Showing
2 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
src/main/groovy/io/seqera/wave/service/aws/ObjectStorageOperationsFactory.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Wave, containers provisioning service | ||
* Copyright (c) 2024, Seqera Labs | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package io.seqera.wave.service.aws | ||
|
||
import groovy.transform.CompileStatic | ||
import groovy.util.logging.Slf4j | ||
import io.micronaut.context.annotation.Factory | ||
import io.micronaut.context.annotation.Value | ||
import io.micronaut.objectstorage.InputStreamMapper | ||
import io.micronaut.objectstorage.ObjectStorageOperations | ||
import io.micronaut.objectstorage.aws.AwsS3Configuration | ||
import io.micronaut.objectstorage.aws.AwsS3Operations | ||
import jakarta.inject.Named | ||
import jakarta.inject.Singleton | ||
import software.amazon.awssdk.services.s3.S3Client | ||
/** | ||
* Factory implementation for ObjectStorageOperations | ||
* | ||
* @author Munish Chouhan <[email protected]> | ||
*/ | ||
@Factory | ||
@CompileStatic | ||
@Slf4j | ||
class ObjectStorageOperationsFactory { | ||
|
||
@Value('${wave.build.logs.bucket}') | ||
String storageBucket | ||
|
||
@Singleton | ||
@Named("build-logs") | ||
ObjectStorageOperations<?, ?, ?> awsStorageOperations(@Named("DefaultS3Client") S3Client s3Client, InputStreamMapper inputStreamMapper) { | ||
AwsS3Configuration configuration = new AwsS3Configuration('build-logs') | ||
configuration.setBucket(storageBucket) | ||
return new AwsS3Operations(configuration, s3Client, inputStreamMapper) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters