#!/bin/sh
# Bootstrap OpenFaaS on Packet.NET Type 2A (arm64) hardware with Kubernetes 1.9 and Weave
# Notes: before starting install kubeadm / kubectl via https://blog.alexellis.io/kubernetes-in-10-minutes/
# Alex Ellis 2017 (c) OpenFaaS
# Changes for Kubernetes 1.9: Edward Vielmetti, Packet.net 2018 (work in progress)
# completely wipe out whatever existing configuration you have
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
...... ok | |
net0: 147.75.77.98/255.255.255.252 gw 147.75.77.97 | |
net0: fe80::320e:d5ff:feff:da9/64 | |
net1: fe80::320e:d5ff:feff:daa/64 (inaccessible) | |
Next server: 147.75.195.231 | |
Filename: http://147.75.195.231/auto.ipxe | |
http://147.75.195.231/auto.ipxe... ok | |
auto.ipxe : 344 bytes [script] | |
Packet.net Baremetal - iPXE boot | |
https://gist.githubusercontent.com/zsmith928/fbde5fde4d46ca380dcc9da33185e3ae/raw/afb09b142ca09d5bc89e04b61c755fbe14eb7858/gistfile1.txt.... ok |
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
#!ipxe | |
# Set source URI to Zac's new mirror | |
set mirror http://fedoramirror.joecompany.com/fedora-secondary/releases/27 | |
# Set CPU architecture and repository URI | |
set arch aarch64 | |
set repo ${mirror}/Everything/aarch64/os | |
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
#!ipxe | |
# Set source URI | |
set mirror http://fedoramirror.joecompany.com/fedora-secondary/releases/27/ | |
set mirror http://download-ib01.fedoraproject.org/pub/fedora-secondary/releases/27 | |
# Detect CPU architecture and calculate repository URI | |
set arch aarch64 | |
set repo ${mirror}/Everything/aarch64/os |
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
# Deploy a Ubuntu 16.04 LTS server on packet.net | |
# ssh into as root | |
# Install docker. Starting with 17.07 Docker ships prebuild arm64 binaries. | |
# when writing the first RC was out, so we are using the testing channel for now | |
# loosely following https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#recommended-extra-packages-for-trusty-1404 | |
apt-get update | |
apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
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
//Find an extension or plugin that let's you run your own javascript on a page | |
//I'm using "Custom JavaScript for websites" in Chrome. | |
//Replace the array with the route numbers you care about. Just the number | |
var routesYouCareAbout = [5, 6, 62]; | |
window.onload = function() { | |
//Loop through the numbers in the array and click them | |
for(i = 0; i < routesYouCareAbout.length; i++) { | |
document.getElementById("chk" + routesYouCareAbout[i]).click(); |
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
#!/usr/bin/python | |
######### | |
# About # | |
######### | |
# This script uses a Raspberry Pi to sense for the presense or absense of water. | |
# If there is water, an email is sent and a buzzer goes off. | |
# When it's dry again, another email is sent, and the buzzer turns off. |