These directions sill setup a an Private AKS Cluster
PREFIX="private" # short unique name, min 5 max 8 letters
LOCATION="centralus" # Azure Region
RESOURCE_GROUP="${PREFIX}-aks"
echo "Goodby World" |
echo "Hello World" |
This typically takes about 10-15 minutes to complete.
Create a new ADO Project in your organization called osdu-r2
In the base project repo now import the base project
#Install Chocolatey | |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
#Assign Chocolatey Packages to Install | |
$Packages = ` | |
'git', ` | |
'microsoft-edge', ` | |
'visualstudiocode', ` | |
'docker-desktop' |
#!/usr/bin/env bash | |
# | |
# Purpose: Initialize the terraform backend-state | |
# Usage: | |
# init-backend-state.sh <resourcegroup> <storageaccount> <keyvault> | |
# curl https://gist.githubusercontent.com/danielscholl/5974a8f3e6c0ecfb45444b690f4299cd/raw/30356cb760c489cbff922c473864edef8779a059/init-backend-state.sh | bash -s <rg> <sa> <kv> | |
set -e |
Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'; | |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine | |
./dotnet-install.ps1 -InstallDir '~/.dotnet' -Channel LTS | |
$RELEASE="20190926.1" | |
$ID_SCOPE="0ne0004515C" | |
$REGISTRATION="edge-gateway" | |
. {Invoke-WebRequest -useb https://github.com/danielscholl/iot-tpm-provision/releases/download/$RELEASE/build.zip -Outfile tpm.zip} | |
Expand-Archive -Path ".\tpm.zip" |
New-Module -Name IoTEdge -ScriptBlock { | |
<# | |
# Installs the IoT Edge Security Daemon on Windows. | |
#> | |
#requires -Version 5 | |
#requires -RunAsAdministrator | |
Set-Variable Windows1607 -Value 14393 -Option Constant |