I hereby claim:
- I am dimetron on github.
- I am dimetron (https://keybase.io/dimetron) on keybase.
- I have a public key ASBXS4LqlCtp-KY1tYLat4lqxAl87qLmsBC9CZbxZhCwbAo
To claim this, I am signing this object:
| user | |
| install istio | |
| install_istio | |
| 0 | |
| Call completed | |
| Arguments | |
| Results |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set -eu | |
| reg="registry.hub.docker.com" | |
| repo="dimetron" | |
| image="devops-cli" | |
| name="${repo}/${image}" | |
| tag="2.8" | |
| parallel=4 |
eksctl create cluster --name fargate --region us-east-1 --version 1.14 --fargate
[ℹ] eksctl version 0.11.1
[ℹ] using region us-east-1
[ℹ] setting availability zones to [us-east-1c us-east-1d]
[ℹ] subnets for us-east-1c - public:192.168.0.0/19 private:192.168.64.0/19
[ℹ] subnets for us-east-1d - public:192.168.32.0/19 private:192.168.96.0/19
[ℹ] using Kubernetes version 1.14
| #!/bin/bash | |
| sudo yum update -y | |
| sudo amazon-linux-extras install docker | |
| sudo service docker start | |
| sudo usermod -a -G docker ec2-user | |
| docker info |
| # Update Docker | |
| curl -sSL https://get.docker.com/ubuntu/ | sudo sh | |
| sudo docker version | |
| # Run VPN | |
| sudo docker run -d --privileged --name vpn --restart=always -p 1194:1194/udp -p 443:443/tcp --dns=8.8.8.8 jpetazzo/openvpn /bin/sh -c run | |
| sudo docker run -t -i -p 8080:8080 --dns=8.8.8.8 --rm --volumes-from vpn jpetazzo/openvpn serveconfig |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |