Skip to content

Commit

Permalink
fix(gitlab): change hostname to nullable and add default for useSsl i…
Browse files Browse the repository at this point in the history
…n registry s3 spec
  • Loading branch information
kosmoz authored and pmig committed Dec 22, 2023
1 parent bea5629 commit ddecd0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ data class GitlabRegistryStorageSpec(
override val secretKeySecret: SecretKeySelector,
@field:Required
override val region: String,
override val hostname: String,
override val hostname: String?,
override val port: Int?,
override val useSsl: Boolean,
override val useSsl: Boolean = true,
override val usePathStyle: Boolean = false
) : CloudStorageSpec
}

0 comments on commit ddecd0c

Please sign in to comment.