Skip to content

Commit

Permalink
Merge branch 'main' into ASCN-234
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-vakil committed Jul 18, 2024
2 parents aaab213 + ab7e761 commit 03f39a3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cnab/app/run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ $releaseTag = $vars.pipeline.releaseTag
# PR container images are located in `cr-dev` in CloudSmith. As opposed to `cr` which we use for release builds.
$isPr = $releaseTag -match '^pr-[0-9]+$'
if ($isPr) {
$containerRegistryUrl = 'crdev.stackoverflow.software'
$pullSecretName = 'cloudsmith-cr-dev'
$containerRegistryUrl = 'cr.stackoverflow.software'
$pullSecretName = 'cloudsmith-cr-prod'
$forceUpgrade = @('--force') # This'll force pods to be recreated with freshly-pulled images
}
else {
Expand Down Expand Up @@ -154,11 +154,12 @@ switch ($action) {
}

ingress = @{
className = "nginx-external"
className = "nginx-internal"
certIssuer = "letsencrypt-dns-prod"
host = $vars.vars.opserverSettings.hostUrl
enabled = $vars.vars.includeIngress
secretName = "opserver-tls"
createTlsCert = $true
}

sqlExternalSecret = @{
Expand Down

0 comments on commit 03f39a3

Please sign in to comment.