-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CONSUL-510] Support case-wanfed-gw on Windows (#79)
- Loading branch information
Showing
3 changed files
with
49 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
test/integration/connect/envoy/case-wanfed-gw/global-setup-windows.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
# initialize the outputs for each dc | ||
for dc in primary secondary; do | ||
rm -rf "workdir/${dc}/tls" | ||
mkdir -p "workdir/${dc}/tls" | ||
done | ||
|
||
container="consul-envoy-integ-tls-init--${CASE_NAME}" | ||
|
||
scriptlet=" | ||
mkdir /out ; | ||
cd /out ; | ||
consul tls ca create ; | ||
consul tls cert create -dc=primary -server -node=pri ; | ||
consul tls cert create -dc=secondary -server -node=sec ; | ||
" | ||
|
||
docker.exe rm -f "$container" &>/dev/null || true | ||
docker.exe run -i --net=none --name="$container" windows/consul:local bash -c "${scriptlet}" | ||
|
||
# primary | ||
for f in \ | ||
consul-agent-ca.pem \ | ||
primary-server-consul-0-key.pem \ | ||
primary-server-consul-0.pem \ | ||
; do | ||
docker.exe cp "${container}:C:\\Program Files\\Git\\out\\$f" workdir/primary/tls | ||
done | ||
|
||
# secondary | ||
for f in \ | ||
consul-agent-ca.pem \ | ||
secondary-server-consul-0-key.pem \ | ||
secondary-server-consul-0.pem \ | ||
; do | ||
docker.exe cp "${container}:C:\\Program Files\\Git\\out\\$f" workdir/secondary/tls | ||
done | ||
|
||
# Private keys have 600 perms but tests are run as another user | ||
chmod 666 workdir/primary/tls/primary-server-consul-0-key.pem | ||
chmod 666 workdir/secondary/tls/secondary-server-consul-0-key.pem | ||
|
||
docker.exe rm -f "$container" >/dev/null || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters