Skip to content
Draft
Show file tree
Hide file tree
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
14 changes: 8 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,18 +170,20 @@ default:
GRADLE_WORKERS: 4
GRADLE_MEMORY_MIN: 1G
GRADLE_MEMORY_MAX: 5G
KUBERNETES_CPU_REQUEST: 6
KUBERNETES_MEMORY_REQUEST: 16Gi
KUBERNETES_MEMORY_LIMIT: 16Gi
KUBERNETES_POD_CPU_REQUEST: 6
KUBERNETES_POD_CPU_LIMIT: 6
KUBERNETES_POD_MEMORY_REQUEST: 16Gi
KUBERNETES_POD_MEMORY_LIMIT: 16Gi

.tier_l:
variables: &tier_l_variables
GRADLE_WORKERS: 6
GRADLE_MEMORY_MIN: 1G
GRADLE_MEMORY_MAX: 6G
KUBERNETES_CPU_REQUEST: 10
KUBERNETES_MEMORY_REQUEST: 20Gi
KUBERNETES_MEMORY_LIMIT: 20Gi
KUBERNETES_POD_CPU_REQUEST: 10
KUBERNETES_POD_CPU_LIMIT: 10
KUBERNETES_POD_MEMORY_REQUEST: 20Gi
KUBERNETES_POD_MEMORY_LIMIT: 20Gi

.gitlab_base_ref_params: &gitlab_base_ref_params
- |
Expand Down
2 changes: 1 addition & 1 deletion dd-smoke-tests/quarkus-native/application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ version = ""

// Avoid unlimited CPU usage on CI.
def isCI = providers.environmentVariable("CI").isPresent()
def ciBuildCpuCount = providers.environmentVariable("KUBERNETES_CPU_REQUEST").getOrElse("4")
def ciBuildCpuCount = providers.environmentVariable("KUBERNETES_POD_CPU_REQUEST").getOrElse("4")

dependencies {
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ext.withProfiler = hasProperty('profiler')

// Avoid unlimited CPU usage on CI.
def isCI = providers.environmentVariable("CI").isPresent()
def ciBuildCpuCount = providers.environmentVariable("KUBERNETES_CPU_REQUEST").getOrElse("4")
def ciBuildCpuCount = providers.environmentVariable("KUBERNETES_POD_CPU_REQUEST").getOrElse("4")

if (hasProperty('appBuildDir')) {
buildDir = property('appBuildDir')
Expand Down
Loading