Skip to content

Instantly share code, notes, and snippets.

View PatrickLang's full-sized avatar

Patrick Lang PatrickLang

  • Washington, USA
View GitHub Profile
@PatrickLang
PatrickLang / README.md
Last active December 28, 2018 17:45
Playing with Virtual Kubelet and AKS

This is my attempt to capture steps needed to deploy:

  1. Azure Container Service (AKS) - currently only supporting Linux
  2. Virtual-Kubelet - to create a Windows "node"
  3. Azure Open Service Broker - make it easy to create Azure SQL databases and other services
  4. Helm to deploy a Windows app with web app in container, backend in Azure SQL

Prerequisites

@PatrickLang
PatrickLang / README.md
Last active January 29, 2018 07:29
Working on Jenkins setup for Packer based workflow
@PatrickLang
PatrickLang / makeiso.ps1
Last active January 24, 2018 04:26
Quick test building an ISO with ISAPI
$isoList = @(
@{
FileName="notepad.iso";
Files=@(
"c:\\windows\\system32\\notepad.exe"
)
}
)
@PatrickLang
PatrickLang / go_manual_project.md
Last active January 22, 2018 07:51
Trying out bazel on Windows
@PatrickLang
PatrickLang / readme.md
Last active December 6, 2017 17:18
Kubecon 2017 Windows Resources
@PatrickLang
PatrickLang / backlog.md
Last active November 28, 2023 08:26
PatrickLang's Windows container lab/demo backlog

This is a list of things that I should code or document to help others get started with Windows Server Containers. Feedback welcome.

@PatrickLang
PatrickLang / WindowsInsiderOnAzure.md
Last active April 21, 2023 18:02
Building a Windows Insider VM and running in Azure

Here's example steps for uploading a Windows VHD to Azure. I initially built mine using this Packer script, then used PowerShell to convert it - Convert-VHD -VHDType Fixed -Path <source.vhdx> -DestinationPath WindowsServer2016Insider.vhd, and last the Azure CLI 2.0 to upload it.

az login

# If you need to use a specific subscription, then 
# az account set --subscription <subscription name>

# Resource group to contain all resources
@PatrickLang
PatrickLang / README.md
Last active January 22, 2018 23:07
Playing with Kubernetes with Windows Server containers on ACS
@PatrickLang
PatrickLang / storage.md
Created August 28, 2017 04:04
Setting up a Zandronum server with Azure Container Instance
PS > az login
To sign in, use a web browser to open the page https://aka.ms/devicelogin and enter the code BWLS49K7Q to authenticate.
[
  {
    "cloudName": "AzureCloud",
    ...
  }
]
@PatrickLang
PatrickLang / README.md
Last active December 24, 2017 09:48
Playing with Minikube on Windows 10 & Hyper-V