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
from paramiko import SSHClient | |
from scp import SCPClient | |
def progress(filename, size, sent): | |
print filename + " " + str(size) + " " + str(sent) | |
if __name__ == "__main__": | |
ssh = SSHClient() | |
ssh.load_system_host_keys() |
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
global | |
log 127.0.0.1:514 local1 | |
defaults | |
mode http | |
log global | |
option httplog | |
option http-server-close | |
option dontlognull | |
option redispatch |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1441741040000", | |
"Effect": "Allow", | |
"Action": [ | |
"ec2:StartInstances" | |
], | |
"Condition": { |
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
#list metrics | |
aws --profile dev --region us-east-1 cloudwatch list-metrics --namespace "AWS/Billing" | |
# Estimated charges | |
aws --region us-east-1 cloudwatch get-metric-statistics --namespace "AWS/Billing" --metric-name "EstimatedCharges" --dimension "Name=Currency,Value=USD" --start-time $(gdate +"%Y-%m-%dT%H:%M:00" --date="-12 hours") --end-time $(gdate +"%Y-%m-%dT%H:%M:00") --statistic Maximum --period 60 --output text | sort -r -k 3 | head -n 1 | cut -f 2 | |
# Marketplace Charges | |
aws --profile dev --region us-east-1 cloudwatch get-metric-statistics --namespace "AWS/Billing" --metric-name "EstimatedCharges" --dimensions Name=ServiceName,Value=AWSMarketplace Name=Currency,Value=USD --start-time $(gdate +"%Y-%m-%dT%H:%M:00" --date="-12 hours") --end-time $(gdate +"%Y-%m-%dT%H:%M:00") --statistic Maximum --period 60 --output text | |
# Redshift |
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
# Seems impossible to find an example like this. Didn't want to use boto, just wanted to use bash to pull the value of a tag out. Holy crap this is long. | |
aws ec2 describe-tags --region us-west-2 --filters '[{"name":"resource-id","values":["i-abc12345"]},{"name":"key","values":["MY_TAG"]}]' | jq '.Tags[].Value' |
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
# The primary network interface | |
auto eth0 | |
iface eth0 inet dhcp | |
iface eth0:0 inet static | |
address 10.9.248.180 | |
#/25 is our VPC subnet. | |
netmask 255.255.255.128 |
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
ip route show | |
default via 10.9.248.1 dev eth0 | |
10.9.248.0/25 dev eth0 proto kernel scope link src 10.9.248.101 | |
after ifup eth0:0 | |
ip route show | |
default via 10.9.248.1 dev eth0 | |
10.9.248.0/25 dev eth0 proto kernel scope link src 10.9.248.101 | |
10.9.248.128/25 dev eth0 proto kernel scope link src 10.9.248.180 |
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
[Unit] | |
Description=Apache Kafka server (broker) | |
Documentation=http://kafka.apache.org/documentation.html | |
Requires=network.target remote-fs.target | |
After=network.target remote-fs.target | |
[Service] | |
Type=simple | |
PIDFile=/var/run/kafka.pid | |
User=kafka |
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
gitfs_remotes: | |
- http://ourrepo/repos/sxa/repo.git: | |
- saltenv: | |
- csdev: | |
- ref: salt-csdev | |
- root: 'salt/env' |
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
-- My need was to include nodes outside of my k8s cluster for monitoring. | |
-- Thanks to @amalucelli for originally posting this. | |
-- https://github.com/coreos/prometheus-operator/issues/834 | |
-- | |
-- This is tested with k8s 1.9, and .17 prometheus operator, using the pre-built deployment at | |
-- https://github.com/coreos/prometheus-operator/blob/master/contrib/kube-prometheus/README.md | |
-- Steps: Deploy per the script above, and then apply these objects. Should appear in granfa after a short time. | |
kind: Service | |
apiVersion: v1 |