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
16 changes: 5 additions & 11 deletions src/main/kotlin/com/cosmotech/api/config/CsmPlatformProperties.kt
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ data class CsmPlatformProperties(
/** Container Registry */
val containerRegistry: CsmPlatformContainerRegistries = CsmPlatformContainerRegistries(),

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

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

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 = ""
data class BlobPersistence(
/** Persistence blob storage path */
val path: String
)

data class Loki(
Expand Down