This file contains hidden or 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
#!/bin/bash | |
# | |
# Bring ECS Agent config and start consul | |
DC=$(curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone/ | rev | cut -c 2- | rev) | |
ADVERTISE_IP=$(curl -s http://169.254.169.254/latest/meta-data/local-ipv4) | |
ECS_CLUSTER='example' | |
yum install -y aws-cli | |
aws s3 cp s3://ops-yotpo/docker/ecs/ecs.config /etc/ecs/ecs.config |
This file contains hidden or 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
require 'json' | |
Ohai.plugin(:Nameservers) do | |
provides "network/nameservers" | |
depends "network" | |
collect_data do | |
Ohai::Log.debug('Parsing resolv.conf for nameservers.') | |
nameservers = [] |
This file contains hidden or 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
console.log('Loading event'); | |
var aws = require('aws-sdk'); | |
exports.handler = function(event, context) { | |
var ecsService = 'sample-webapp'; | |
var ecsCluster = 'sample-cluster'; | |
var ecsRegion = 'us-west-2'; | |
var maxCount = 2; | |
var ecs = new aws.ECS({region: ecsRegion}); |
This file contains hidden or 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
sudo: required | |
dist: trusty | |
services: | |
- docker | |
cache: | |
- directories: | |
- /var/tmp/docker |
This file contains hidden or 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/env bash | |
# | |
# Double the instance count for widget ASG | |
# Required ENV Variables | |
# * ELB_NAME | |
# * ASG_NAME | |
# | |
asg_check() { | |
local pending_instance_count=$(aws autoscaling describe-auto-scaling-groups \ |
This file contains hidden or 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
hostname = '' | |
Resque.workers.each { |w| w.unregister_worker if w.id.start_with?(hostname) } |
This file contains hidden or 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/env ruby | |
# | |
# Cloudsearch export script | |
# | |
# Required ENV Variables | |
# * AWS_ACCESS_KEY_ID | |
# * AWS_SECRET_ACCESS_KEY | |
# * CS_SEARCH_ENDPOINT | |
# * OUT_FILENAME | |
# |
This file contains hidden or 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/env bash | |
# | |
# Wrapper for CSSH running instances by tag | |
usage(){ | |
cat << EOF >&2 | |
usage: $0 options | |
This script Gathers instances from AWS and runs ClusterSSH to them |
This file contains hidden or 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/env bash | |
REMOTE_HOST=ip-10-2-10-197.ec2.internal # Related to PROXY_HOST | |
REMOTE_PORT=27017 | |
LOCAL_PORT=27017 | |
PROXY_HOST=ec2-55-210-99-165.compute-1.amazonaws.com | |
ssh -f -L ${LOCAL_PORT}:${REMOTE_HOST}:${REMOTE_PORT} $PROXY_HOST -N |
This file contains hidden or 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/env bash | |
random_cowsay() { | |
local INPUT=$* | |
echo $INPUT | cowsay -f $(ls /usr/share/cowsay/cows/ | shuf -n1) | |
} |