This file contains 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
var http = require('http'); | |
var handleRequest = function(request, response) { | |
console.log('Received request for URL: ' + request.url); | |
response.writeHead(200); | |
response.end('Hello Kubernetes'); | |
}; | |
var www = http.createServer(handleRequest); | |
www.listen(8080); |
This file contains 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
https://jkclassdata.blob.core.windows.net/data/training_materials.tar | |
https://jkclassdata.blob.core.windows.net/data/products.json.zip | |
This file contains 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
- hosts: web | |
gather_facts: true | |
- hosts: haproxy | |
tasks: | |
- name: Installs haproxy load balancer | |
apt: | |
pkg: haproxy | |
state: present | |
update_cache: yes |
This file contains 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
global | |
daemon | |
maxconn 256 | |
defaults | |
mode http | |
timeout connect 5000ms | |
timeout client 50000ms | |
timeout server 50000ms |
This file contains 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
<VirtualHost *:80> | |
DocumentRoot /var/www/awesome-app | |
Options -Indexes | |
ErrorLog /var/log/apache2/error.log | |
TransferLog /var/log/apache2/access.log | |
</VirtualHost> |
This file contains 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
- hosts: web | |
tasks: | |
- name: Installs apache web server | |
apt: | |
pkg: apache2 | |
state: present | |
update_cache: true | |
- name: Push default virtual host configuration | |
copy: |
This file contains 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
wget https://raw.githubusercontent.com/ansible/ansible/devel/contrib/inventory/azure_rm.py |
This file contains 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
- name: Create VM | |
hosts: localhost | |
connection: local | |
tasks: | |
- name: Create resource group | |
azure_rm_resourcegroup: | |
name: thegroup | |
location: southcentralus | |
- name: Create virtual network | |
azure_rm_virtualnetwork: |
This file contains 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
<install application> | |
sudo waagent -deprovision+user -force | |
<end of cloud init script> | |
az vm deallocate | |
az vm generalize | |
az image create | |
az vmss create | |
az network probe create |
This file contains 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
add to cloud-init | |
sudo apt-get update | |
sudo apt-get install xfce4 | |
sudo apt-get install xrdp | |
echo xfce4-session >~/.xsession | |
sudo service xrdp restart | |
sudo curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -c current -P chefdk | |
sudo apt-get install gedit | |
sudo apt-get install firefox |