View playbook1.yaml
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
--- | |
- name: sample | |
hosts: localhost | |
tasks: | |
- name: create a directory to show ansible is working | |
file: | |
path: /tmp/created-by-ansible |
View jsonball.rb
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
require 'json' | |
# JSON parser tag, creating map for use in jekyll markdown | |
# Alex.Heneveld @ Cloudsoft Corp (remove spaces and add the .com) | |
# Released under APL 2.0 | |
# usage: {% jsonball varname from TYPE PARAM %} | |
# | |
# where TYPE is one of {data,var,file,page}, described below |
View 1-get-amp-running-tomcat.yaml
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
name: My Tomcat Server | |
location: my-first-location | |
services: | |
- type: 'TomcatServer' | |
brooklyn.config: | |
wars.root: >- | |
http://bit.ly/2dcaKIV |
View bucket.tf
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
provider "aws" { | |
region = "eu-central-1" | |
} | |
resource "aws_s3_bucket" "bucket1" { | |
bucket = "alex-example1-bucket1" | |
acl = "private" | |
} | |
resource "aws_s3_bucket" "bucket2" { |
View retrieve-ec2-instance-types.sh
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
curl https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/index.json > ec2-pricing.json | |
cat ec2-pricing.json | jq -r '.products[].attributes["instanceType"]' | sort -u | grep '\.' > instances | |
cat ec2-pricing.json | jq -c '[.products[].attributes] | [ .[] | select(.instanceType) | select(.location) | {location,instanceType} ] | group_by(.location) | [{ (.[][0].location): [ .[][].instanceType ] | unique }] | sort' > instance-by-region.json | |
cat instance-by-region.json | jq -r '[ .[] | to_entries | { (.[].key): .[].value | join(", ") } ] > instances-string-by-region.json |
View jstack-active
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
#!/bin/bash | |
jstack $@ | awk ' | |
function onTraceBegin() { | |
onTraceEnd() | |
data["lineCount"]=0 | |
data["head"]=$0 | |
} | |
function onTraceEnd() { | |
if ("head" in data) { |
View brooklyn-scan-dangling-refs.sh
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
for l in locations/* ; do | |
ENT=`xmlstarlet sel -t -v "location/locationConfig/callerContext/entityProxy" $l` | |
if [ ! -z "$ENT" ] ; then | |
if [ -z `find . -name $ENT` ] ; then | |
# it's a leak | |
LOC=`basename $l` | |
echo "Detected location $LOC has reference to deleted entity $ENT - removing it" | |
rm $l | |
FILES=`grep -l $LOC locations/*` | |
if [ ! -z "$FILES" ] ; then |
View git-summary.sh
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
# displays a summary list of commits in your current repo vs upstream branch and upstream master, | |
# and of working tree changes Added, Modified, Deleted, or not in index ("??") | |
THIS_COMMAND="$0 $@" | |
while true; do | |
case $1 in | |
-o|--offline) | |
OFFLINE=true |
View 1 vitaminder (based on mine, gil's, derek's, then mine again)
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
name: VitaMinder | |
artifacts: | |
- | |
name: VitaMinder WAR | |
type: com.example.java:WAR | |
content: { href: vitaminder.war } | |
requirements: | |
- | |
type: HostedOn | |
fulfillment: id:as |
View jetty-spring.xml
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
<bean id="standardMBeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean"> | |
<property name="locateExistingServerIfPossible" value="true" /> | |
</bean> | |
<bean id="jettyJMXExporter" class="org.springframework.jmx.export.MBeanExporter"> | |
<property name="beans"> | |
<map> | |
<entry key="com.opengamma.jetty:service=HttpConnector" value-ref="connector" /> | |
<entry key="com.opengamma.jetty:service=HttpServer" value-ref="server" /> | |
</map> |
NewerOlder