Skip to content

Instantly share code, notes, and snippets.

View troyfontaine's full-sized avatar

Troy Fontaine troyfontaine

View GitHub Profile
@troyfontaine
troyfontaine / cloud-config.yml
Created January 25, 2016 02:13
Multi-format Cloud Config File
Content-Type: multipart/mixed; boundary="===============0035287898381899620=="
MIME-Version: 1.0
--===============0035287898381899620==
Content-Type: text/cloud-config; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cloud-config.txt"
#cloud-config
@troyfontaine
troyfontaine / troubleshoot_haproxy.md
Created January 25, 2016 16:14
Troubleshooting HAProxy

Troubleshooting HAProxy

Step 1: Verify that HAProxy is running

On ubuntu, run the following command:

sudo service haproxy status

You should see output like below if it is running:

haproxy is running.
@troyfontaine
troyfontaine / consul_0.6.3.sh
Last active February 5, 2016 05:34
Packaging Consul into a deb file
#!/bin/bash
# Install pre-requisites
apt-get install software-properties-common
# Add PPAs
apt-add-repository ppa:brightbox/ruby-ng -y
apt-add-repository ppa:ansible/ansible -y
# Run update
@troyfontaine
troyfontaine / readme.md
Created July 12, 2016 18:01
MySQL RDS Cheat Sheet

MySQL RDS Cheat Sheet

1. Install the Command Line Client

On Ubuntu

sudo apt-get install mysql-client

2. Use the command-line client to connect

The below command will connect to the rds server specified after -h and open a MySQL client connection that you can run commands against.

# !/bin/bash
# Script to use Fleetctl to stop and start containers using a rolling restart
# By Troy Fontaine with rolling restart script from http://engineering.rainchasers.com/coreos/fleet/2015/03/03/rolling-unit-restart.html
# Grab list of containers and assign to array
container_list=($(fleetctl list-units -fields=unit -no-legend | cut -f2 ))
# Prepare variable for later use
container=""
@troyfontaine
troyfontaine / install_steps.md
Last active October 16, 2016 16:19
Install Ruby on Hypriot OS

Steps to install

  1. Install pre-requisite packages

    sudo apt update
    sudo apt install -y gcc make ruby-build
    
  2. Install rbenv

@troyfontaine
troyfontaine / readme.md
Last active April 27, 2017 16:56
[WIP] Ansible Cheatsheet

List of OS Families used by ansible_os_family

"Container Linux by CoreOS" = Container Linux "Debian" = Debian, Raspbian, Ubuntu

Get facts about a host

ansible myserver -m setup | less
@troyfontaine
troyfontaine / cloudflare_config.md
Last active December 17, 2017 23:14
Hosted DNS Cheat Sheet

Cloudflare

DNSSEC with Route 53

"257-KSK" as a "Flag" and "13 - ECDSA Curve P-256 with SHA-256" as an algorithm.

AWS ELBs

@troyfontaine
troyfontaine / troubleshooting_ethernet_ubuntu.md
Last active January 2, 2018 22:26
Troubleshooting Ethernet Adapters on Ubuntu

Troubleshooting Ethernet on Ubuntu

Here are some commands to help troubleshoot network card issues on Ubuntu:

Find Connection State

Determine Speed and Duplex

dmesg |grep eth0
@troyfontaine
troyfontaine / README.md
Created March 20, 2018 16:48
RubyGems Type Error Fix

Based on the work by wjordan in this comment

The solution is to force the update of RubyGems to side step the issue.

gem update --force --system 2.6.11

Then the error does not occur.