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
<UserSettings><ApplicationIdentity version="17.0"/><ToolsOptions><ToolsOptionsCategory name="Environment" RegisteredName="Environment"/></ToolsOptions><Category name="Environment_Group" RegisteredName="Environment_Group"><Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package"><PropertyValue name="Version">2</PropertyValue><FontsAndColors Version="2.0"><Theme Id="{DE3DBBCD-F642-433C-8353-8F1DF4370ABA}"/><Categories><Category GUID="{FA937F7B-C0D2-46B8-9F10-A7A92642B384}" FontIsDefault="Yes"><Items><Item Name="Artboard Background" Foreground="0x02000000" Background="0x02000000" BoldFont="No"/></Items></Category><Category GUID="{B36B0228-DBAD-4DB0-B9C7-2AD3E572010F}" FontName="Segoe UI" FontSize="9" CharSet="1" FontIsDefault="No"><Items><Item Name="Odd Row Items" Foreground="0x00000000" Background="0x00FFFFFF" BoldFont="Yes"/><Item Name= |
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
Change password on WSL | |
Close Ubuntu if running | |
From CMD prompt | |
ubuntu config --default-user root | |
Note, if you get response that command not found, try more specific version: |
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
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get --yes --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade |
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
sudo wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \ | |
sudo dpkg -i packages-microsoft-prod.deb && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get install apt-transport-https && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y aspnetcore-runtime-3.1 |
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
## This creates a working single node Azure Kubernetes Cluster | |
## and with an Azure Container Registry. Note, the ACR is in | |
## the same resource group as the AKS for demo purposes. For | |
## dev, qa, and prod you should have ACR in separate resource group. | |
echo "Beginning AKS Setup for Demo" | |
date | |
AKS_RESOURCE_GROUP=aks-rg1 | |
AKS_CLUSTER_NAME=aks-c1 |