I hereby claim:
- I am imperialwicket on github.
- I am imperialwicket (https://keybase.io/imperialwicket) on keybase.
- I have a public key whose fingerprint is 404E 1FAF D1D0 4BA8 5022 145F 2088 41AB DEB4 B0D0
To claim this, I am signing this object:
1. make a new spinnaker Application "today" | |
2. Attempt to create a load balancer | |
- Select an account | |
- ERROR: preferredZones is undefined | |
3. Attempt to create a security group | |
- ERROR: securityGroups[account] is undefined | |
4. IN AWS: | |
- create security group: | |
- Name: today | |
- Desc: today-test |
General | |
- I couldn't figure out how to undo | |
- hover over tips/info on tiles, objects, and tools would be helpful | |
- Some of the tile/object organization is challenging (ex: "Final Goal" | |
was not immediately easy to find). It would be cool if "required" objects | |
were either already on the level, or if they were in the object pane until | |
placed in the level. That is: things like spawn point and final goal have | |
constant presence in the window (either in the object pane or placed in the | |
level); since you absolutely need those things, but once they're placed, it's | |
never needed again. |
{ | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"autoscaling:*", | |
"cloudwatch:*", | |
"dynamodb:*", | |
"ec2:*", | |
"elasticache:*", |
# Bash alias to generate pull requests on github.com | |
# | |
# PreRequisites: | |
# Create an auth token (bypasses 2 factor auth, when enabled): | |
# https://github.com/settings/tokens/new | |
# | |
# Use any name, something like 'pull requests' makes sense. | |
# Allow permissions 'repo' and 'public repo'. | |
# Create. | |
# |
I hereby claim:
To claim this, I am signing this object:
location ~ ^/app/dashboards/default\.json.*$ { | |
rewrite ^/app/dashboards/default\.json(.*)$ /app/dashboards/$remote_user.json$1 break; | |
} |
#!/bin/bash | |
################################################## | |
# | |
# s3-s3cmd-sync-dated-dirs.sh | |
# | |
# Easily download content in dated directory | |
# structures from s3. | |
# | |
# | |
# https://gist.github.com/imperialWicket |
#!/bin/bash | |
##################################################################### | |
# | |
# openstack-python-packages.sh | |
# | |
# https://gist.github.com/imperialWicket | |
# | |
# This scripts automates much of getting started process for | |
# openstack cli installation (python clients). Pip is required for | |
# this script to work, and also Python 2.x (x > 6). Pip presence is |
#!/bin/bash | |
EXPECTED=1 | |
if [ $# -ne $EXPECTED ] | |
then | |
echo "Please provide a username argument." | |
exit 5 | |
fi |
#!/bin/bash | |
# | |
# /etc/rc.d/init.d/chicagoboss | |
# | |
# Starts Chicago Boss from the /home/boss/cb_admin directory. | |
# | |
# Source function library. | |
. /etc/rc.d/init.d/functions |