Assume followings:
/mykeys/.ssh/prodserver.pem
- is a certificate file
umid
- is a user name
111.111.111.111
- is a remote host, that mongodb runs
properties([ | |
[$class : 'DockerJobProperty', | |
cleanImages : true, | |
dockerJobTemplate: [$class : 'DockerJobTemplateProperty', | |
cloudname: 'DockerHost-9', | |
// Supports other properties from https://git.io/vM5wf | |
template : [$class : 'DockerTemplate', | |
labelString : 'my-worker-label', | |
instanceCapStr : '4', | |
mode : 'EXCLUSIVE', |
# Update your region | |
provider "aws" { | |
region = "${var.aws_region}" | |
} | |
resource "aws_ecs_cluster" "ecs_cluster" { | |
name = "test-cluster" | |
} | |
# |
AMS1 | Amsterdam, The Netherlands | Europe | |
AMS50 | Amsterdam, The Netherlands | Europe | |
ARN1 | Stockholm, Sweden | Europe | |
ATL50 | Atlanta, Georgia | United States | |
ATL52 | Atlanta, Georgia | United States | |
BOM2 | Mumbai, India | India | |
BOM51 | Mumbai, India | India | |
CDG3 | Paris, France | Europe | |
CDG50 | Paris, France | Europe | |
DEL51 | Paris, France | Europe |
vault mount pki | |
vault mount -path=pki1 pki | |
vault mount -path=pki2 pki | |
vault mount -path=pki3 pki | |
vault mount-tune -max-lease-ttl=87600h pki | |
vault mount-tune -max-lease-ttl=87600h pki1 | |
vault mount-tune -max-lease-ttl=87600h pki2 | |
vault mount-tune -max-lease-ttl=87600h pki3 | |
vault write pki/root/generate/internal common_name="Vault Testing Root Authority" ttl=87600h |
#!/bin/bash | |
if [[ -z $(grep dockerhost /etc/hosts) ]] | |
then | |
echo `/sbin/ip route|awk '/default/ { print $3 }'` dockerhost >> /etc/hosts | |
fi |
What is tiller? here
Useful tutorials:
#!/bin/bash | |
echo "Getting list of Availability Zones" | |
all_regions=$(aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' | sort) | |
all_az=() | |
while read -r region; do | |
az_per_region=$(aws ec2 describe-availability-zones --region $region --query 'AvailabilityZones[*].[ZoneName]' --output text | sort) | |
while read -r az; do |
#!/bin/bash -e | |
# Setup a Root CA in vault | |
# Generate and sign an Intermediate cert | |
# | |
# Requires: | |
# * A running vault server already initialzed and unsealed | |
# * Environment variable VAULT_TOKEN is set | |
# * vault cli (https://www.vaultproject.io) | |
# * httpie (https://github.com/jkbrzt/httpie) |
#!/bin/bash | |
wget https://github.com/gravitational/teleport/releases/download/v0.2.0-beta.1/teleport-v0.2.0-beta.1-linux-amd64-bin.tar.gz | |
tar -xvzf teleport-v0.2.0-beta.1-linux-amd64-bin.tar.gz | |
cd teleport | |
sudo mkdir -p /opt/bin /opt/teleport | |
sudo cp -af build/* /opt/bin/ | |
sudo cp -fr src/github.com/gravitational/teleport/web/dist/* /opt/teleport/ |