Skip to content

Instantly share code, notes, and snippets.

View bryantrobbins's full-sized avatar

Bryan Robbins bryantrobbins

View GitHub Profile
@bryantrobbins
bryantrobbins / ApplicationTests.java
Created September 29, 2017 01:49
ElasticMQ as a local drop-in for AWS SQS in a SpringBoot + Spring JMS setup
// AWS provides a JMS library for SQS: https://aws.amazon.com/blogs/developer/using-amazon-sqs-with-spring-boot-and-spring-jms/
// I wanted to use that setup in a Spring Boot app, and to run some tests against an in-memory
// ElasticMQ queue, which is SQS (and AWS Java SDK) compatible. In case your scenario is EXACTLY like mine ... here you go
@RunWith(SpringRunner.class)
@SpringBootTest
// This annotation is important: Forces the Application Context (and SQS connections) to reset between tests. ElasticMQ will fail to
// stop if there are active connections.
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
public class ApplicationTests {
# Get package updates
sudo yum update -y
# Check if docker installed
installed=`yum list installed | grep docker`
if [[ -z "${installed}" ]]; then
# Docker install steps required for AMI (Amazon Linux)
sudo yum install docker -y
sudo service docker start
@bryantrobbins
bryantrobbins / facts.rb
Created June 17, 2016 13:37
Custom facts for AWS EC2 instances
Facter.add(:ec2_availability_zone) do
setcode do
Facter::Core::Execution.exec('curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone')
end
end
Facter.add(:aws_region) do
setcode do
az = Facter.value(:ec2_availability_zone)
az[0..-2]
@bryantrobbins
bryantrobbins / hiera.yaml
Last active June 17, 2016 12:52
Local puppet configuration sample
---
:backends:
- yaml
:yaml:
:datadir: "/root/init/datadir"
:hierarchy:
- custom
- "hosts/%{::aws_cloudformation_logical_id}"
- common
#!/bin/bash -v
echo "Updating packages"
yum update -y
echo "Installing yum packages"
yum install -y rubygems git puppet3
echo "Installing rubygems"
gem install r10k hiera-eyaml hiera-eyaml-kms
"BuildServer" : {
"Type" : "AWS::EC2::Instance",
"DependsOn" : "AttachGateway",
"Metadata" : {
"AWS::CloudFormation::Init" : {
"config" : {
"sources" : {
"/root" : "https://github.com/bryantrobbins/standard-aws/tarball/master"
},
"files" : {
@bryantrobbins
bryantrobbins / build.sh
Last active November 14, 2016 06:03
Running a packer build which pushes an nginx-based image of a static website AWS ECR
#!/bin/bash -v
# Add your app build steps here
# Assume that these steps produce a "dist" folder at this level
# Prepare packer variables
repoName=$1
imageVersion=$2
chmod 700 fetch.sh
./fetch.sh $repoName $imageVersion > variables.json
# I am a novice at R, so please forgive this example.
# After hours of Google-ing, tweaking, and trying a bunch of stuff, this was the only
# way I could come up with for constructing a set of columns to be dropped from a data.table,
# then dropping those columns.
#
# I expect that any R pros that stumble across this may have comments. Please feel free to suggest edits/leave comments.
#
# Library loading
library('data.table')
@bryantrobbins
bryantrobbins / build.gradle
Last active August 29, 2015 14:27
A quick script to get the # of builds in the "Build Queue" - i.e., the number of builds which are awaiting an open Executor slot - in Jenkins.
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'groovy'
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.8'
@bryantrobbins
bryantrobbins / build.gradle
Created August 17, 2015 02:00
Jenkins parallel grid search; I've copied some code from a helper class here to simplify the example (you'll notice that JenkinsClient is really written as "Java" instead of Groovy). I just wanted the example to be self-contained - there are definitely much more "Groovy" ways to make HTTP calls like the ones our Groovy code needs to make.
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'groovy'
import org.apache.commons.io.IOUtils
import org.apache.commons.io.FileUtils
import static com.xlson.groovycsv.CsvParser.parseCsv
// Load properties or defaults
def min_gamma_val = hasProperty('min_gamma') ? min_gamma : ''