Skip to content

Instantly share code, notes, and snippets.

View solarce's full-sized avatar

Brandon Burton solarce

View GitHub Profile
@solarce
solarce / keystore.rb
Created April 21, 2015 16:26
snippets of how we get rundeck behind nginx+ssl
# Import the self-signed certificate from chef-server for rundeck's store
cert_alias = "#{node['fqdn']}-selfsigned-crt"
execute "import-rundeck-self-signed-cert" do
not_if "keytool -list -keystore /etc/rundeck/ssl/truststore -storepass adminadmin | grep #{cert_alias}"
command "keytool -import -alias #{cert_alias} -file /var/opt/chef-server/nginx/ca/*.crt -keystore /etc/rundeck/ssl/truststore -storepass adminadmin -noprompt"
action :run
end
@solarce
solarce / overlay.sh
Created April 19, 2015 22:52
docker 1.6 + overlayfs on arch (wooooo)
[root@dumptruck ~]# docker info
Containers: 0
Images: 0
Storage Driver: overlay
Backing Filesystem: extfs
Execution Driver: native-0.2
Kernel Version: 3.19.3-3-ARCH
Operating System: Arch Linux
CPUs: 2
Total Memory: 15.51 GiB
==> Edit PKGBUILD ? [Y/n] ("A" to abort)
==> ------------------------------------
==> n
==> plex-media-server-plexpass dependencies:
- systemd (already installed)
==> Edit plex-media-server.install ? [Y/n] ("A" to abort)
==> -----------------------------------------------------
/network add -nick solarce hangops
/server add -auto -ssl -network hangops hangops.irc.slack.com 6667 hangops.MyC00LP4SSWo|>D
/save
/connect hangops
[(ruby-2.1.5)] ~/code/knife-block/knife-block-org <master> gem push knife-block-0.2.0.gem
Pushing gem to https://rubygems.org...
Repushing of gem versions is not allowed.
Please use `gem yank` to remove bad gem releases.
@solarce
solarce / tk_zookeeper.sh
Last active August 29, 2015 14:17
Example of testing out https://github.com/solarce/tf_zookeeper with terraform.io
thq-d-bburt01 福 ~/code/lookout/terraform/tf_zookeeper_github ➤ 9aeb663|master✓
4331 ± : cp terraform.tfvars.example terraform.tfvars ⏎ [0m]
thq-d-bburt01 福 ~/code/lookout/terraform/tf_zookeeper_github ➤ 9aeb663|master✓
4332 ± : terraform get -update [0m]
Get: git::https://github.com/terraform-community-modules/tf_aws_sg.git?ref=stable (update)
Get: git::https://github.com/terraform-community-modules/tf_aws_asg.git?ref=stable (update)
4334 ± : touch /tmp/bootstrap_stage0_zk_default.sh ⏎ [0m]
A = [1, 3, 5, 7, 9]
B = [2, 4, 6, 8]
add each element of A to each element of B
@solarce
solarce / tfvars_example.sh
Created March 12, 2015 19:03
Example using multiple tfvars files
thq-d-bburt01 福 ~/code/lookout/terraform/tf_example ➤ 608cc3b|master✓
4299 ± : terraform plan -var-file terraform_main.tfvars
Refreshing Terraform state prior to plan...
Error refreshing state: 1:3: unknown variable accessed: var.aws_access_key in:
${var.aws_access_key}
thq-d-bburt01 福 ~/code/lookout/terraform/tf_example ➤ 608cc3b|master✓
4300 ± : terraform plan -var-file terraform_main.tfvars -var-file terraform_aws.tfvars
# Ubuntu Precise full with pkgsrc bootstrapped into /home/ubuntu
FROM solarce/dockerfile-ubuntu-precise-full:latest
MAINTAINER Brandon Burton <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
# Setup pkgsrc
# Steps modified from http://www.codeghar.com/blog/pkgsrc-on-linux-quickstart-guide.html
RUN adduser --shell /bin/bash --gecos "User for builds" --disabled-password --home /home/ubuntu ubuntu
@solarce
solarce / hcl2yaml.py
Last active August 29, 2015 14:15
Terraform template (HCL) to YAML in Python
#!/usr/bin/python
# need to pip install pyhcl pyyaml
import sys, yaml, hcl
filename = sys.argv[1]
print("Reading", filename)
with open(filename, 'r') as fp:
obj = hcl.load(fp)