Skip to content

Commit

Permalink
ci: increase IM play instances memory requests and probes timeouts [s…
Browse files Browse the repository at this point in the history
…kip ci] (#18339)

Signed-off-by: Rado <[email protected]>
  • Loading branch information
radnov authored Aug 13, 2024
1 parent 583d88d commit 924e1b4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
5 changes: 3 additions & 2 deletions jenkinsfiles/canary
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ pipeline {
FLYWAY_REPAIR_BEFORE_MIGRATION = "true"
INSTANCE_TTL = "315360000"
STARTUP_PROBE_FAILURE_THRESHOLD = "50"
LIVENESS_PROBE_TIMEOUT_SECONDS = "3"
READINESS_PROBE_TIMEOUT_SECONDS = "3"
LIVENESS_PROBE_TIMEOUT_SECONDS = "5"
READINESS_PROBE_TIMEOUT_SECONDS = "5"
CORE_RESOURCES_REQUESTS_MEMORY = "2500Mi"
}

steps {
Expand Down
6 changes: 4 additions & 2 deletions jenkinsfiles/dev
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,10 @@ pipeline {
FLYWAY_REPAIR_BEFORE_MIGRATION = "true"
INSTANCE_TTL = "315360000"
STARTUP_PROBE_FAILURE_THRESHOLD = "50"
LIVENESS_PROBE_TIMEOUT_SECONDS = "3"
READINESS_PROBE_TIMEOUT_SECONDS = "3"
LIVENESS_PROBE_TIMEOUT_SECONDS = "5"
READINESS_PROBE_TIMEOUT_SECONDS = "5"
MIN_READY_SECONDS = "240"
CORE_RESOURCES_REQUESTS_MEMORY = "2500Mi"
}
steps {
script {
Expand Down
5 changes: 3 additions & 2 deletions jenkinsfiles/stable
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,9 @@ pipeline {
FLYWAY_REPAIR_BEFORE_MIGRATION = "true"
INSTANCE_TTL = "315360000"
STARTUP_PROBE_FAILURE_THRESHOLD = "50"
LIVENESS_PROBE_TIMEOUT_SECONDS = "3"
READINESS_PROBE_TIMEOUT_SECONDS = "3"
LIVENESS_PROBE_TIMEOUT_SECONDS = "5"
READINESS_PROBE_TIMEOUT_SECONDS = "5"
CORE_RESOURCES_REQUESTS_MEMORY = "2500Mi"
}

steps {
Expand Down

0 comments on commit 924e1b4

Please sign in to comment.