Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
jwkidd3 / node_app
Last active December 21, 2018 22:34
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);
https://jkclassdata.blob.core.windows.net/data/training_materials.tar
https://jkclassdata.blob.core.windows.net/data/products.json.zip
- hosts: web
gather_facts: true
- hosts: haproxy
tasks:
- name: Installs haproxy load balancer
apt:
pkg: haproxy
state: present
update_cache: yes
@jwkidd3
jwkidd3 / jinja
Last active November 13, 2018 18:21
global
daemon
maxconn 256
defaults
mode http
timeout connect 5000ms
timeout client 50000ms
timeout server 50000ms
<VirtualHost *:80>
DocumentRoot /var/www/awesome-app
Options -Indexes
ErrorLog /var/log/apache2/error.log
TransferLog /var/log/apache2/access.log
</VirtualHost>
- hosts: web
tasks:
- name: Installs apache web server
apt:
pkg: apache2
state: present
update_cache: true
- name: Push default virtual host configuration
copy:
- 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:
@jwkidd3
jwkidd3 / vmss
Last active October 30, 2018 22:52
<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
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