Skip to content

Commit

Permalink
ci(azure): increase startup time for container in azure (#357)
Browse files Browse the repository at this point in the history
increase startup time for container in azure
  • Loading branch information
hf-krechan authored Jan 10, 2025
1 parent c2ab334 commit 17932d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pulumi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
environment = config.get("environment")
assert environment, "environment must be set"

websites_container_start_time_limit = config.get("websitesContainerStartTimeLimit")
assert websites_container_start_time_limit, "websitesContainerStartTimeLimit must be set"

cpu = config.get_int("cpu", 1)
memory = config.get_int("memory", 2)

Expand Down Expand Up @@ -116,6 +119,7 @@
name="BEDINGUNGSBAUM_BASE_URL", value=bedingungsbaum_base_url
),
azure_native.web.NameValuePairArgs(name="ENVIRONMENT", value=environment),
azure_native.web.NameValuePairArgs(name="WEBSITES_CONTAINER_START_TIME_LIMIT", value=websites_container_start_time_limit),
],
linux_fx_version=f"DOCKER|{image_name_with_tag}",
),
Expand Down

0 comments on commit 17932d5

Please sign in to comment.