Fix envvar handling in deploy_stack.ps1

Adds the missing $env:BASIC_AUTH and $env:AUTH_URL envvars to the
windows deploy_stack.ps1 script.

Signed-off-by: John McCabe <john@johnmccabe.net>
This commit is contained in:
John McCabe 2020-01-24 23:40:52 +00:00 committed by Alex Ellis
parent 9fd8a59b89
commit e244e5ca74

View File

@ -74,16 +74,19 @@ if (Get-Command docker -errorAction SilentlyContinue)
Write-Host "Disabling basic authentication for gateway.." Write-Host "Disabling basic authentication for gateway.."
Write-Host "" Write-Host ""
$env:BASIC_AUTH="false"; $env:BASIC_AUTH="false";
$env:AUTH_URL=""
} }
else else
{ {
Write-Host "" Write-Host ""
Write-Host "Enabling basic authentication for gateway.." Write-Host "Enabling basic authentication for gateway.."
Write-Host "" Write-Host ""
$env:BASIC_AUTH="true";
$env:AUTH_URL="http://basic-auth-plugin:8080/validate"
} }
Write-Host "Deploying OpenFaaS core services" Write-Host "Deploying OpenFaaS core services"
docker stack deploy func --compose-file ./docker-compose.yml --orchestrator swarm docker stack deploy func --compose-file ./docker-compose.yml
} }
else else
{ {