Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions src/main/kotlin/com/cosmotech/api/config/CsmPlatformProperties.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ data class CsmPlatformProperties(
/** Container Registry */
val containerRegistry: CsmPlatformContainerRegistry = CsmPlatformContainerRegistry(),

/** Blob Persistence */
val blobPersistence: BlobPersistence,
/** S3 service */
val s3: S3,

/** Argo Service */
val argo: Argo,
Expand Down Expand Up @@ -212,9 +212,17 @@ data class CsmPlatformProperties(
val imageVersion: String = "latest",
)

data class BlobPersistence(
/** Persistence blob storage path */
val path: String
data class S3(
/** Endpoint URL */
val endpointUrl: String = "http://localhost:9000",
/** Bucket name */
val bucketName: String = "cosmotech-api",
/** Credentials: access key id */
val accessKeyId: String = "",
/** Credentials: secret access key */
val secretAccessKey: String = "",
/** Storage region */
val region: String = ""
)

data class Loki(
Expand Down