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
Fireup all our nodes. | |
I could find information about this only which was odd. The tutorial is nice if you are setting up some static site ala the early 00's. | |
So this is some notes on creating a cluster by hang which will feed into the creation of a puppet / ansible / chef / shell / slat script | |
to do the main part of creating the cluster. | |
I note also many clients do not support redis in cluster mode WTF? | |
Open up this in a browser | |
https://redis.io/commands/cluster-slots |
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/sh -e | |
TEMPDIR=`mktemp -d` | |
echo Compilecode | |
solc --gas --bin -o ${TEMPDIR} $1 | |
FILENAME=${TEMPDIR}/$1 | |
FILENAME=`echo ${TEMPDIR}/$1 | sed -e 's/.sol$/.bin/'` | |
DATA=`cat $FILENAME` |
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
<VirtualHost *:80> | |
ServerName www.loaders.net | |
ServerAdmin [email protected] | |
Redirect permanent / https://www.loaders.net | |
RewriteEngine On | |
RewriteCond %{HTTPS} off | |
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} |
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
server { | |
listen 80; | |
server_name www.loaders.net; | |
rewrite ^ https://$server_name$request_uri? permanent; | |
#listen 80 default_server; | |
#return 301 https://$host$request_uri; | |
} | |
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
{ | |
"Description": "lambda helper functions for stacks", | |
"Outputs": { | |
"LookupStackARN": { | |
"Description": "Arn for lookup stack arn", | |
"Value": { | |
"Fn::GetAtt": [ | |
"LookupStackOutputs", | |
"Arn" | |
] |
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/sh | |
CMD=`basename $0` | |
TMPFILE=`mktemp /tmp/${CMD}.XXXXXX` || exit 1 | |
KEY_ARN="arn:aws:kms:eu-west-1:28282828282:key/2828282-82822-28283-28238-28383393" | |
function usage { | |
echo "${CMD} [-k KMS key arn] <from> <to>" >&2 | |
echo " Example:" | |
echo " ${CMD} env.staging s3://bucket/staging/env.staging" >&2 |
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
# Add your self to the local sudo group when docker daemon is running as root | |
docker run -v /:/mnt -i -t centos chroot /mnt usermod -a -G sudo ${USER} |
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 -e | |
# In general using this is a hack round another problem | |
#Sometimes it can be a practical answer to be productive rather than going in circles | |
while [ true ]; do | |
RENEW_TIME=60000 | |
CHECK_TIME=60 | |
# get my Lease for the | |
LEASE=`echo curl http://lease` |
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
Selinux can be difficult when you just want it to work and many people just switch it off | |
Here is something simple command lines I use to just set it up, its best to go away for a week and learn it all properly but this is good when you just want to get it done. | |
yum install policycoreutils-python # Centos package | |
NOTE: all changes take effect and remain even after a reboot | |
Allow something to execute / write to a file / area | |
# find type name 1st ( this may prove more difficult in which case look at agent logs) | |
semanage fcontext -l | grep progname |
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
frontend https | |
bind :80 | |
bind 0.0.0.0:443 ssl crt /etc/haproxy/mydomain.com.pem | |
reqadd X-Forwarded-Proto:\ https | |
redirect scheme https if !{ ssl_fc } | |
acl docker_registry_domain hdr(host) -i docker-register.mydomain.com | |
# This is a hack for docker not always sending basic auth data | |
acl docker_token hdr(Authorization:) -i Token |
NewerOlder