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", | |
| "kubernetesConfig": { | |
| "enableRbac": true, | |
| "networkPolicy": "calico", | |
| "enableAggregatedAPIs": 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
| az group create -n gitlab | |
| az network nsg create -g gitlab -n GitlabNSG | |
| az network nsg rule create --nsg-name GitlabNSG -g gitlab --name allow-https --description "HTTPS" --protocol tcp --priority 100 --destination-port-range "443" | |
| az network public-ip create -n GitlabIP -g gitlab --allocation-method static --dns-name gitlabci | |
| #set DNS record in your domain | |
| az network dns record-set a add-record -n ci -g dns -z qubernetes.com --ipv4-address `az network public-ip list -g gitlab -o tsv|awk '{print $4}'` | |
| wget https://gist.githubusercontent.com/ams0/304867d9a6ae7e31ef01820e0f0f8dd8/raw/abf539128ef3944a08a3414cb98ebbc411c8b77d/deploy-gitlab-ce.sh |
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 |
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
| 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
| { | |
| "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
| { | |
| "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
| # 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
| 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
| { | |
| "apiVersion": "vlabs", | |
| "properties": { | |
| "orchestratorProfile": { | |
| "orchestratorType": "Kubernetes", | |
| "orchestratorRelease": "1.8", | |
| "kubernetesConfig": { | |
| "enableRbac": true | |
| } | |
| }, |