This file contains hidden or 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 | |
daemon | |
user haproxy | |
group haproxy | |
log /dev/log local0 | |
maxconn 10000 | |
pidfile /var/run/haproxy.pid | |
defaults | |
log global |
This file contains hidden or 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
# https://www.hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/ | |
# remap prefix from 'C-b to C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# remap panes using | and - | |
bind | split-window -h | |
bind - split-window -v |
This file contains hidden or 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
: 1516725419:0;minikube status | |
: 1516725444:0;kubectl get nodes | |
: 1516725499:0;kubectl get pods | |
: 1516725511:0;kubectl get pods --all-namespaces | |
: 1516725620:0;kubectl run my-nginx --image=nginx:alpine --replicas=2 --port=80 | |
: 1516725697:0;kubectl expose deployment my-nginx --port=80 --type=NodePort | |
: 1516725725:0;minikube service my-nginx | |
: 1516726276:0;kubectl get |
This file contains hidden or 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
image: laszlocloud/build-image | |
before_script: | |
stages: | |
- test | |
- build | |
- deploy | |
test: |