Skip to content

Commit

Permalink
Merge pull request #1621 from alan-turing-institute/nexus_selectors
Browse files Browse the repository at this point in the history
Pulumi: Fix selectors not updating
  • Loading branch information
JimMadge authored Oct 16, 2023
2 parents bd7e91d + 6334d34 commit 63c7910
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def __init__(
],
),
containerinstance.ContainerArgs(
image="ghcr.io/alan-turing-institute/nexus-allowlist:v0.6.0",
image="ghcr.io/alan-turing-institute/nexus-allowlist:v0.8.0",
name="nexus-allowlist"[:63],
environment_variables=[
containerinstance.EnvironmentVariableArgs(
Expand All @@ -251,6 +251,12 @@ def __init__(
name="NEXUS_PORT",
value="8081",
),
# Use fallback updating method due to issue with changes to
# files on Azure storage mount not being recognised by entr
containerinstance.EnvironmentVariableArgs(
name="ENTR_FALLBACK",
value="1",
),
],
ports=[],
resources=containerinstance.ResourceRequirementsArgs(
Expand Down

0 comments on commit 63c7910

Please sign in to comment.