-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Videobridges live at convene-videobridge-$client.zinc.coop (#76)
This allows us to use meet.zinc.coop for our convene domain for Zinc, as well as renames the `jitsi` folder and other references to `videobridge` #61 #74
- Loading branch information
Showing
22 changed files
with
122 additions
and
89 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
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
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
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
<%= render partial: 'workspaces/room_card', locals: { room: room } %> | ||
<% end %> | ||
</ul> | ||
</div> | ||
</div> |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
...ture/clients/meet.zinc.coop/public.tfvars → infrastructure/clients/zinc/public.tfvars
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
cloudflare_zone_id = "211e94f01d483d1555310b9a19cf98dd" | ||
vultr_snapshot_id = "3d75f13901998" | ||
vultr_snapshot_id = "93e5f2c9afef3" |
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
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
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,38 @@ | ||
#!/bin/bash | ||
|
||
for i in "$@" | ||
do | ||
case $i in | ||
--client=*) | ||
CLIENT="${i#*=}" | ||
shift | ||
;; | ||
--videobridge-domain=*) | ||
VIDEOBRIDGE_DOMAIN="${i#*=}" | ||
shift | ||
;; | ||
--region=*) | ||
REGION="${i#*=}" | ||
shift | ||
;; | ||
--provider=*) | ||
PROVIDER="${i#*=}" | ||
shift | ||
;; | ||
esac | ||
done | ||
|
||
|
||
if [ -z ${VIDEOBRIDGE_DOMAIN+x} ]; | ||
then | ||
VIDEOBRIDGE_DOMAIN="convene-videobridge-$CLIENT.zinc.coop" | ||
fi | ||
echo $VIDEOBRIDGE_DOMAIN | ||
|
||
# Automated: Build AMI | ||
packer build \ | ||
-var "videobridge_domain=${VIDEOBRIDGE_DOMAIN}" \ | ||
-var "region=${REGION}"\ | ||
videobridge/${PROVIDER}.json | ||
|
||
|
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
File renamed without changes.
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
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