Skip to content

Instantly share code, notes, and snippets.

View robece's full-sized avatar

Roberto Cervantes robece

View GitHub Profile
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.
![](https://media.tenor.com/ObS8YPbzWb0AAAAd/kipchak-age-of-empires.gif)
@robece
robece / gist:7ae9ccc299c4fac16f3e428d03e7b42d
Last active March 3, 2021 18:08
AKS Powershell deployment script
# 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"
# PRINT