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
{ | |
"apiVersion": "vlabs", | |
"properties": { | |
"orchestratorProfile": { | |
"orchestratorType": "Kubernetes", | |
"orchestratorRelease": "1.8", | |
"kubernetesConfig": { | |
"networkPolicy": "calico", | |
"clusterSubnet": "172.16.38.0/23" | |
} |
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
#Azure point to site on a Mac | |
#create RG | |
az group create -n vpnet | |
#create network and subnet | |
az network vnet create -g vpnet -n VNet1 --address-prefixes 192.168.0.0/16 --subnet-name FrontEnd --subnet-prefix 192.168.1.0/24 | |
az network vnet subnet create -n GatewaySubnet --address-prefix 192.168.200.0/24 --vnet-name VNet1 -g vpnet | |
#create a public ip |
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
{ | |
"apiVersion": "vlabs", | |
"properties": { | |
"orchestratorProfile": { | |
"orchestratorType": "Kubernetes", | |
"orchestratorRelease": "1.8", | |
"kubernetesConfig": { | |
"enableRbac": true | |
} | |
}, |
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
Verifying my Blockstack ID is secured with the address 1DgWxERnV6kudD32S1JqV8kZjUyZC3hLiF https://explorer.blockstack.org/address/1DgWxERnV6kudD32S1JqV8kZjUyZC3hLiF |
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 dockerfile utilizes components licensed by their respective owners/authors. | |
FROM microsoft/dotnet:2.0.0-runtime-nanoserver-1709 | |
LABEL Description="IIS" Vendor="Microsoft" Version="10" | |
CMD [ "ping", "localhost", "-t" ] |
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
{ | |
"apiVersion": "vlabs", | |
"properties": { | |
"orchestratorProfile": { | |
"orchestratorType": "Kubernetes" | |
}, | |
"masterProfile": { | |
"count": 1, | |
"dnsPrefix": "cloverfield", | |
"vmSize": "Standard_D2_v2" |
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
{ | |
"apiVersion": "vlabs", | |
"properties": { | |
"orchestratorProfile": { | |
"orchestratorType": "Kubernetes", | |
"orchestratorRelease": "1.9" | |
}, | |
"masterProfile": { | |
"count": 1, | |
"dnsPrefix": "cloverfield", |
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
FROM microsoft/windowsservercore:1709 | |
ENV chocolateyUseWindowsCompression false | |
RUN powershell -Command \ | |
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')); \ | |
choco feature disable --name showDownloadProgress |
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
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"adminUsername": { | |
"type": "string", | |
"defaultValue": "azureuser", | |
"metadata": { | |
"description": "User name for the Virtual Machine." | |
} |
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
#!/bin/bash | |
#install Gitlab CE | |
yum -y update | |
yum install -y curl policycoreutils-python epel-release | |
yum -y install nginx | |
yum install -y postfix | |
systemctl enable postfix | |
systemctl start postfix |