Skip to content

Instantly share code, notes, and snippets.

View yatskevich's full-sized avatar

Ivan Yatskevich yatskevich

  • VictoriaMetrics Inc.
  • Amsterdam, The Netherlands
  • LinkedIn in/yatskevich
View GitHub Profile
@yatskevich
yatskevich / start-consuls.sh
Created January 17, 2015 12:25
Start 4 instances of Consul with Docker
# run the first server node expecting at least two more nodes to form a Consul cluster
docker run -d --name node1 -h node1 progrium/consul -server -bootstrap-expect 3
# other two nodes will join the first one using its IP (in Docker network)
JOIN_IP="$(docker inspect -f '{{.NetworkSettings.IPAddress}}' node1)"
# run second server node
docker run -d --name node2 -h node2 progrium/consul -server -join $JOIN_IP
# run third server node
@yatskevich
yatskevich / consul-session.sh
Last active June 22, 2018 02:42
Trying out Consul
boot2docker ip
# 192.168.59.103
consul members -rpc-addr=192.168.59.103:8400
# Node Address Status Type Build Protocol
# node4 172.17.0.13:8301 alive client 0.4.1 2
# node2 172.17.0.11:8301 alive server 0.4.1 2
# node3 172.17.0.12:8301 alive server 0.4.1 2
# node1 172.17.0.10:8301 alive server 0.4.1 2
@yatskevich
yatskevich / gist:bd00e9fcb70cd1e467ff
Last active August 3, 2016 16:23
Service Discovery resources
Theory:
- http://jasonwilder.com/blog/2014/02/04/service-discovery-in-the-cloud/
Practice:
- https://github.com/yatskevich/service-discovery-box
- https://github.com/yatskevich/pingpong
- https://medium.com/@yatskevich/trying-out-consul-with-docker-on-os-x-3193b7ef9f39
@yatskevich
yatskevich / vs-bash-console.bat
Last active February 1, 2023 03:58 — forked from timabell/vs-bash-console.bat
batch script for loading git-bash and the vs tools in the same window
@echo off
%HOMEDRIVE%
cd %HOMEPATH%
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
echo Use full exe names when running under bash, e.g. "msbuild.exe"
echo Loading bash, you may now use git and msbuild in the same console \o/.
"C:\Program Files\Git\bin\sh.exe" --login -i