Skip to content

Commit

Permalink
Fix envvar handling in deploy_stack.ps1
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
johnmccabe authored and alexellis committed Jan 25, 2020
1 parent 9fd8a59 commit e244e5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deploy_stack.ps1
Expand Up @@ -74,16 +74,19 @@ if (Get-Command docker -errorAction SilentlyContinue)
Write-Host "Disabling basic authentication for gateway.."
Write-Host ""
$env:BASIC_AUTH="false";
$env:AUTH_URL=""
}
else
{
Write-Host ""
Write-Host "Enabling basic authentication for gateway.."
Write-Host ""
$env:BASIC_AUTH="true";
$env:AUTH_URL="http://basic-auth-plugin:8080/validate"
}

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
{
Expand Down

0 comments on commit e244e5c

Please sign in to comment.