Skip to content

Instantly share code, notes, and snippets.

View thebsdbox's full-sized avatar
🐙

Daniel Finneran thebsdbox

🐙
View GitHub Profile
{
"deployments": [
{
"name": "Upload Docker Packages",
"parallel": false,
"sessions": 0,
"hosts": [
"192.168.1.3",
"192.168.1.4",
"192.168.1.5"
@thebsdbox
thebsdbox / wipe.sh
Created December 2, 2018 16:26
This will pivot to a copied tmpfs wipe the underlying disk and force a reboot
#!/bin/bash
echo Unmounting any filesystem not needed
umount -a
echo Beginning building of tmp root
mkdir /tmp/tmproot
mount -t tmpfs none /tmp/tmproot
mkdir /tmp/tmproot/{proc,sys,dev,run,usr,var,tmp,oldroot}
cp -ax /{bin,etc,mnt,sbin,lib64} /tmp/tmproot/
mkdir /tmp/tmproot/lib
{
"label":"Kubernets-cluster-on-CentOS",
"version":"0.1",
"vmconfig" : {
"vcenterURL" :"https://u:p@vc.url",
"datacentre" : "",
"datastore":"",
"network" : "",
"host" : "esxi0xxxxx",
"guestCredentials" : {
@thebsdbox
thebsdbox / Inline_Upgrade.md
Last active June 19, 2018 05:26
Docker EE Inline upgrade procedure

Docker EE Inline upgrade procedure

This is a guide that details the steps to have in place a duplicate environment to upgrade to, and requires an existing UCP/DTR cluster.

Prerequisites

Ensure that new nodes are all confiured with identical firewall rules and that all of the relevant swarm joins are performed.

  • Create a backup from existing UCP Cluster (UCP Will stop during the backup)

Ensure you use the correct tag to see what is running, check in docker images

Keybase proof

I hereby claim:

  • I am thebsdbox on github.
  • I am thebsdbox (https://keybase.io/thebsdbox) on keybase.
  • I have a public key ASDRPB3GqyjIx1cYkNOI1WwKU9_GoQUM1RBakKkT4Z8BBAo

To claim this, I am signing this object:

package main
import (
"encoding/xml"
"fmt"
)
// Envelope : is the parent XML and holds all information about a VM
type Envelope struct {
XMLName xml.Name `xml:"Envelope"`
@thebsdbox
thebsdbox / dockercon.sh
Last active May 20, 2020 22:22
Docker Con colour ASCII
#!/bin/bash
# Either run as a standalone, or add to .bash_profile to start on new session
RED=$(tput setaf 1 2>/dev/null)
GREEN=$(tput setaf 2 2>/dev/null)
YELLOW=$(tput setaf 3 2>/dev/null)
BLUE=$(tput setaf 4 2>/dev/null)
PURPLE=$(tput setaf 5 2>/dev/null)
CYAN=$(tput setaf 6 2>/dev/null)
@thebsdbox
thebsdbox / gist:29e395299f89b52214b66269f5b33f7d
Created February 22, 2017 10:58
Hello Docker World in 69 bytes
BITS 32
org 0x05000000
db 0x7F, "ELF"
dd 1
dd 0
dd $$
dw 2
dw 3
dd 0x0500001B
"Networks": [
{ "docker_mgmt" : 90 },
{ "docker_prod" : 91 }
]
"Networks": [
{
"vlanName" : "docker_mgmt",
"vlanID" : 90
},
@thebsdbox
thebsdbox / madness.c
Last active October 21, 2016 11:39
OV JSON drove me to drink
void stats(oneviewSession *session)
{
// This test function will grab Server-Profiles
// It will then locate the bay that their located in
// Finally it will locate the sub ports and get the statistics and names
// Presume we're logged in before trying to query OneView
if ((session) && session->address && session->cookie) {
// First query
char *profiles = ovQueryServerProfiles(session, NULL);