This file contains hidden or 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
asyncapi: 2.5.0 | |
info: | |
title: Age of Empires App | |
version: 1.0.0 | |
description: > | |
Purpose of this app is to have some fun with AsyncAPI and WebSocket and | |
define an interface for Age of Empires. | |
 |
This file contains hidden or 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
# NOTE: before run this script ensure you are logged in Azure by using "az login" command. | |
$DeploymentAlias = Read-Host -Prompt "Introduce a lowercase unique alias for your deployment (max length suggested of 9 chars)" | |
$ResourceGroupName = "$($DeploymentAlias)-group" | |
$Location = "westus2" | |
$AKSClusterName = "$($DeploymentAlias)ks" | |
$AKSK8sVersion = "1.17.13" | |
$ContainerRegistryName = "$($DeploymentAlias)cr" | |