diff --git a/common/src/main/kotlin/com/cosmotech/common/containerregistry/ContainerRegistryService.kt b/common/src/main/kotlin/com/cosmotech/common/containerregistry/ContainerRegistryService.kt index fa9df9231..41821a139 100644 --- a/common/src/main/kotlin/com/cosmotech/common/containerregistry/ContainerRegistryService.kt +++ b/common/src/main/kotlin/com/cosmotech/common/containerregistry/ContainerRegistryService.kt @@ -56,7 +56,7 @@ class ContainerRegistryService(private val csmPlatformProperties: CsmPlatformPro val images = restClient .get() - .uri("/v2/$repository/tags/list") + .uri("/v2/$repository/tags/list?n=500") .header(HttpHeaders.AUTHORIZATION, getHeaderAuthorization()) .retrieve() .body(String::class.java)!!