Skip to content
Snippets Groups Projects
Commit e244e5ca authored by John McCabe's avatar John McCabe Committed by Alex Ellis
Browse files

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: default avatarJohn McCabe <john@johnmccabe.net>
parent 9fd8a59b
No related branches found
No related tags found
No related merge requests found
...@@ -74,16 +74,19 @@ if (Get-Command docker -errorAction SilentlyContinue) ...@@ -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
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment