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
import com.cloudbees.plugins.credentials.* | |
import com.cloudbees.plugins.credentials.common.* | |
import com.cloudbees.plugins.credentials.domains.* | |
import com.cloudbees.plugins.credentials.impl.* | |
import com.cloudbees.jenkins.plugins.sshcredentials.impl.* | |
import com.cloudbees.jenkins.plugins.awscredentials.* | |
import org.jenkinsci.plugins.plaincredentials.impl.* | |
import hudson.plugins.blazemeter.* | |
domain = Domain.global() |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# This configuration requires Vagrant 1.5 or newer and three plugins: | |
# | |
# vagrant plugin install vagrant-hosts ~> 2.1.4 | |
# vagrant plugin install vagrant-auto_network ~> 1.0.0 | |
# vagrant plugin install vagrant-vbguest ~> 0.10.0 | |
# | |
# After installation, the following steps will spin up a master and agent that |
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
''' | |
@author Bommarito Consulting, LLC | |
@date 20120622 | |
Identify and, if requested, remove orphaned snapshots from an EC2 account. | |
''' | |
# Imports | |
import boto |
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
case $::hostname { | |
/^gphapaadm(2|3|4|5|6|7)$/ : { | |
$els_host = 'elsvipprd1.ddtc.cmgdigital.com' | |
$els_port = '9200' | |
$gph_host = 'graphite2.ddtc.cmgdigital.com' | |
$gph_port = '80' | |
} | |
default : { fail("elasticsearch host not set been for ${::hostname} in graphite::webapp") } | |
} |