-
Notifications
You must be signed in to change notification settings - Fork 1
/
.zshrc
2134 lines (1877 loc) · 53 KB
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Path to your oh-my-zsh configuration.
ZSH="${HOME}/.oh-my-zsh"
DEFAULT_USER='mgomezch'
DISABLE_AUTO_TITLE='false'
COMPLETION_WAITING_DOTS='true'
DISABLE_UNTRACKED_FILES_DIRTY='false' # This makes Git faster but it can’t notice untracked files well.
HIST_STAMPS='yyyy-mm-dd'
function source_if_exists() {
[[ -s "${1}" ]] && source "${1}"
}
source_if_exists "${HOME}/.nix-profile/etc/profile.d/nix.sh"
export LOCALE_ARCHIVE="$(readlink ~/.nix-profile/lib/locale)/locale-archive"
if [ -z "${ZSH_UPGRADE_RESTARTED+1}" ]
then
autoload -U is-at-least
if ! is-at-least 5
then
export ZSH_UPGRADE_RESTARTED=1
exec zsh -$- "${@}"
fi
fi
if [[ -v BRAZIL_PLATFORM_OVERRIDE ]]
then
devdesk=1
fi
plugins=(
aws
bower
bundler
cabal
catimg
coffee
colored-man
colorize
common-aliases
compleat
cpanm
debian
dircycle
django
docker
docker-compose
emoji
encode64
gem
git
git-extras
git-flow
git-hubflow
github
gnu-utils
golang
gpg-agent
grunt
heroku
kubectl
mercurial
nmap
node
npm
pep8
perl
pip
postgres
pyenv
pylint
python
ruby
rust
rvm
sbt
scala
screen
sprunge
stack
sudo
systemd
tmux
urltools
vagrant
vim-interaction
virtualenv
zsh-nvm
)
# export UPDATE_ZSH_DAYS=13
# DISABLE_AUTO_UPDATE='true'
source "${ZSH}/oh-my-zsh.sh"
source "${HOME}/.zshtheme"
# zsh options
# Changing directories
setopt AUTO_CD
unsetopt AUTO_PUSHD
unsetopt CDABLE_VARS
setopt CHASE_DOTS
setopt CHASE_LINKS
unsetopt POSIX_CD
unsetopt PUSHD_IGNORE_DUPS
unsetopt PUSHD_MINUS
#unsetopt PUSHD_SILENT
unsetopt PUSHD_TO_HOME
# Completion
setopt ALWAYS_LAST_PROMPT
unsetopt ALWAYS_TO_END
setopt AUTO_LIST
setopt AUTO_MENU
setopt AUTO_NAME_DIRS
unsetopt AUTO_PARAM_KEYS
setopt AUTO_PARAM_SLASH
unsetopt AUTO_REMOVE_SLASH
setopt BASH_AUTO_LIST
unsetopt COMPLETE_ALIASES
setopt COMPLETE_IN_WORD
setopt GLOB_COMPLETE
setopt HASH_LIST_ALL
setopt LIST_AMBIGUOUS
unsetopt LIST_BEEP
unsetopt LIST_PACKED
unsetopt LIST_ROWS_FIRST
setopt LIST_TYPES
unsetopt MENU_COMPLETE
unsetopt REC_EXACT
# Expansion and globbing
setopt BAD_PATTERN
setopt BARE_GLOB_QUAL
setopt BRACE_CCL
setopt CASE_GLOB
setopt CASE_MATCH
unsetopt CSH_NULL_GLOB
setopt EQUALS
setopt EXTENDED_GLOB
setopt GLOB
unsetopt GLOB_ASSIGN
unsetopt GLOB_DOTS
unsetopt GLOB_SUBST
setopt HIST_SUBST_PATTERN
unsetopt IGNORE_BRACES
unsetopt IGNORE_CLOSE_BRACES
unsetopt KSH_GLOB
unsetopt MAGIC_EQUAL_SUBST
unsetopt MARK_DIRS
setopt MULTIBYTE
setopt NOMATCH
unsetopt NULL_GLOB
unsetopt NUMERIC_GLOB_SORT
setopt RC_EXPAND_PARAM
setopt REMATCH_PCRE
unsetopt SH_GLOB
setopt UNSET # :( this should really be set, but it breaks stuff
unsetopt WARN_CREATE_GLOBAL # :( this should really be set, but it breaks stuff
# History
setopt APPEND_HISTORY
setopt BANG_HIST
setopt EXTENDED_HISTORY
# HIST_ALLOW_CLOBBER
setopt HIST_BEEP
setopt HIST_EXPIRE_DUPS_FIRST
setopt HIST_FCNTL_LOCK
setopt HIST_FIND_NO_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_SPACE
setopt HIST_LEX_WORDS
unsetopt HIST_NO_FUNCTIONS
unsetopt HIST_NO_STORE
unsetopt HIST_REDUCE_BLANKS
setopt HIST_SAVE_BY_COPY
setopt HIST_SAVE_NO_DUPS
setopt HIST_VERIFY
setopt INC_APPEND_HISTORY
setopt SHARE_HISTORY
# Initialisation
unsetopt ALL_EXPORT
setopt GLOBAL_EXPORT
setopt GLOBAL_RCS
setopt RCS
# Input/output
setopt ALIASES
unsetopt CLOBBER
setopt CORRECT
unsetopt CORRECT_ALL
unsetopt DVORAK
unsetopt FLOW_CONTROL
unsetopt IGNORE_EOF
setopt INTERACTIVE_COMMENTS
unsetopt HASH_CMDS
unsetopt HASH_DIRS
unsetopt HASH_EXECUTABLES_ONLY
setopt MAIL_WARNING
setopt PATH_DIRS
# PATH_SCRIPT
# PRINT_EIGHT_BIT
unsetopt PRINT_EXIT_VALUE
setopt RC_QUOTES
unsetopt RM_STAR_SILENT
setopt RM_STAR_WAIT
setopt SHORT_LOOPS
unsetopt SUN_KEYBOARD_HACK
# Job Control
setopt AUTO_CONTINUE
unsetopt AUTO_RESUME
unsetopt BG_NICE
setopt CHECK_JOBS
unsetopt HUP
setopt LONG_LIST_JOBS
setopt MONITOR
setopt NOTIFY
# POSIX_JOBS
# Prompting
setopt PROMPT_BANG
setopt PROMPT_CR
setopt PROMPT_SP
setopt PROMPT_PERCENT
setopt PROMPT_SUBST
setopt TRANSIENT_RPROMPT
# Scripts and Functions
setopt C_BASES
# C_PRECEDENCES
# DEBUG_BEFORE_CMD
unsetopt ERR_EXIT
unsetopt ERR_RETURN
setopt EVAL_LINENO
setopt EXEC
setopt FUNCTION_ARGZERO
unsetopt LOCAL_OPTIONS # hmm…
unsetopt LOCAL_TRAPS # hmm…
setopt MULTI_FUNC_DEF
# MULTIOS
setopt OCTAL_ZEROES
unsetopt SOURCE_TRACE
unsetopt TYPESET_SILENT
unsetopt VERBOSE
unsetopt XTRACE
# Shell emulation
unsetopt BASH_REMATCH
unsetopt BSD_ECHO
unsetopt CONTINUE_ON_ERROR
unsetopt CSH_JUNKIE_HISTORY
unsetopt CSH_JUNKIE_LOOPS
unsetopt CSH_JUNKIE_QUOTES
# CSH_NULLCMD
unsetopt KSH_ARRAYS
unsetopt KSH_AUTOLOAD
unsetopt KSH_OPTION_PRINT
unsetopt KSH_TYPESET
unsetopt KSH_ZERO_SUBSCRIPT
unsetopt POSIX_ALIASES
# POSIX_BUILTINS
unsetopt POSIX_IDENTIFIERS
unsetopt POSIX_STRINGS
unsetopt POSIX_TRAPS
unsetopt SH_FILE_EXPANSION
# SH_NULLCMD
unsetopt SH_OPTION_LETTERS
unsetopt SH_WORD_SPLIT
setopt TRAPS_ASYNC
# Zle
setopt BEEP
setopt COMBINING_CHARS
setopt EMACS
unsetopt OVERSTRIKE
unsetopt SINGLE_LINE_ZLE
unsetopt VI
setopt ZLE
# History searching with PageUp/Down
bindkey '^[[5~' history-beginning-search-backward
bindkey '^[[6~' history-beginning-search-forward
# TODO: manpath
# User executable and library paths
bin_new_paths=(); function bin_add_path() { [[ -d $1 ]] && bin_new_paths+=($1); }
lib_new_paths=(); function lib_add_path() { [[ -d $1 ]] && lib_new_paths+=($1); }
inc_new_paths=(); function inc_add_path() { [[ -d $1 ]] && inc_new_paths+=($1); }
inf_new_paths=(); function inf_add_path() { [[ -d $1 ]] && inf_new_paths+=($1); }
man_new_paths=(); function man_add_path() { [[ -d $1 ]] && man_new_paths+=($1); }
com_new_paths=(); function com_add_path() { [[ -d $1 ]] && com_new_paths+=($1); }
# Executable paths
bin_add_path "/usr/local/opt/fzf/bin"
bin_add_path "${HOME}/.opt/github/hub/bin"
bin_add_path "/Volumes/Unix/code/repo/brazil/EnvImprovement/env/BrazilRecursiveCmdParallel-1.0/runtime/bin"
bin_add_path "${HOME}/.cargo/bin"
bin_add_path "${HOME}/.pyenv/bin"
bin_add_path "${HOME}/.rvm/bin"
bin_add_path "${HOME}/bin"
bin_add_path "${HOME}/stuff/bin"
bin_add_path "${HOME}/stuff/commands"
bin_add_path "${HOME}/.nix-profile/bin"
bin_add_path "${HOME}/.cabal/bin"
bin_add_path "${HOME}/.toolbox/bin"
bin_add_path '/apollo/env/AWSBillAdjustmentsCLIUtils'
if [[ -v devdesk ]]
then
for apollo_environment in \
SDETools \
AmazonAwsCli \
BarkCLI \
OdinTools \
envImprovement \
do
bin_add_path "/apollo/env/${apollo_environment}/bin"
done
fi
if [[ -d '/usr/local/Cellar' ]]
then
for brew_path in /usr/local/Cellar/*/*/{bin,libexec/gnubin}
do
bin_add_path "${brew_path}"
done
fi
# Library paths
#lib_add_path "${HOME}/.nix-profile/lib"
# Include paths — shouldn’t this be handled by pkg-config?
#inc_add_path "${HOME}/.nix-profile/include"
# GNU texinfo paths
inf_add_path "${HOME}/.nix-profile/share/info"
# Manual paths
man_add_path "${HOME}/.nix-profile/share/man"
if [[ -d '/usr/local/Cellar' ]]
then
for brew_path in /usr/local/Cellar/*/*/{share/man,libexec/gnuman}
do
man_add_path "${brew_path}"
done
fi
# zsh completion paths
com_add_path "${HOME}/.zsh/completion"
com_add_path "$(readlink /apollo/env/AWSBillAdjustmentsCLIUtils/autocomplete)"
export PATH="$(IFS=':'; printf '%s' "${bin_new_paths[*]}"):${PATH}"
export LD_LIBRARY_PATH="$(IFS=':'; printf '%s' "${lib_new_paths[*]}"):${LD_LIBRARY_PATH}"
export LD_RUN_PATH="$(IFS=':'; printf '%s' "${lib_new_paths[*]}"):${LD_RUN_PATH}"
export C_INCLUDE_PATH="$(IFS=':'; printf '%s' "${inc_new_paths[*]}"):${C_INCLUDE_PATH}"
export INFOPATH="$(IFS=':'; printf '%s' "${inf_new_paths[*]}"):${INFOPATH}"
export MANPATH="$(IFS=':'; printf '%s' "${man_new_paths[*]}"):${MANPATH}"
# Completion configuration
fpath=("${com_new_paths[@]}" "${fpath[@]}")
zstyle ':completion:*' completer _expand _complete _ignored _match _correct _approximate _prefix
zstyle ':completion:*' expand prefix suffix
zstyle ':completion:*' file-sort name
zstyle ':completion:*' insert-unambiguous true
zstyle ':completion:*' list-suffixes true
zstyle ':completion:*' matcher-list '+' '+m:{[:lower:][:upper:]}={[:upper:][:lower:]}' '+r:|[._-]=* r:|=*' '+l:|=* r:|=*'
zstyle ':completion:*' match-original only
zstyle ':completion:*' max-errors 6 numeric
zstyle ':completion:*' menu select=1
zstyle ':completion:*' original false
zstyle ':completion:*' verbose true
zstyle :compinstall filename "${HOME}/.zshrc"
autoload -Uz compinit && compinit -i
zle -C all-matches complete-word _my_generic
zstyle ':completion:all-matches::::' completer _all_matches
zstyle ':completion:all-matches:*' old-matches only
_my_generic () {
local ZSH_TRACE_GENERIC_WIDGET= # works with "setopt nounset"
_generic "$@"
}
bindkey '^X^a' all-matches
command -v zkubectl > /dev/null && source <(zkubectl completion zsh)
# Environment
[[ ${TERM} == xterm ]] && export TERM='xterm-256color'
export LANG='en_US.UTF-8'
export LC_ALL='en_US.UTF-8'
export PAGER='most'
export LESS='-r'
export EDITOR='nvim'
export BC_LINE_LENGTH=0
function v1p() {
vim -E \
-c 1p \
-c 'echo input("")' \
-c q \
"${@}"
}
command -v pyenv &>/dev/null && {
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
}
command -v thefuck &>/dev/null && eval "$(thefuck --alias)"
[[ -x "$HOME/.rakudobrew/bin/rakudobrew" ]] && eval "$(~/.rakudobrew/bin/rakudobrew init -)"
source_if_exists "${HOME}/perl5/perlbrew/etc/bashrc"
source_if_exists "${HOME}/.gvm/scripts/gvm"
source_if_exists "${HOME}/.rvm/scripts/rvm"
source_if_exists "${HOME}/stuff/code/repo/github.bus.zalan.do/bocytko/teams-helpers/teams-helpers"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
alias sqitch-surveys='docker run -it -v ~/.sqitch:/root/.sqitch -v "$PWD:/src" --rm matteofigus/docker-sqitch sqitch'
alias ls='ls --color=auto'
alias grep='grep --color=auto'
function pst() { pstree -pUSlaughs }
function psxe() { ps -eFlyww }
function psx() { ps -Flyww }
function nstl() { sudo netstat -tnlp }
function lines() { tr ' ' '\n' }
function myip() { dig TXT +short 'o-o.myaddr.l.google.com' @'ns1.google.com' | tr -d '"' }
function k() { kubectl "${@}" }
function kg() { k get --show-all --output=wide --show-labels "${@}" }
function kgj() { kg --output=json "${@}" }
function kgy() { kg --output=yaml "${@}" }
function kgn() { kg --output=name "${@}" }
function kgp() { kg pods "${@}" }
function kgpj() { kgj pods "${@}" }
function kgpy() { kgy pods "${@}" }
function kgpn() { kgn pods "${@}" }
function kga() { kg all "${@}" }
function kgaj() { kgj all "${@}" }
function kgay() { kgy all "${@}" }
function kgan() { kgn all "${@}" }
function kd() { k describe "${@}" }
function kD() { k delete "${@}" }
function kE() { k edit "${@}" }
function kC() { k create "${@}" }
function kCf() { kc -f "${@}" }
function kl() { k logs "${@}" }
function klf() { kl --follow "${@}" }
function kt() { k top "${@}" }
function kconf() { k config "${@}" }
function kcfg() { kconf "${@}" }
function kr() { k run "${@}" }
function kpf() { k port-forward "${@}" }
function ke() { k exec -it "${@}" }
function ksh() {
ke "${@}" -- sh
}
function kbash() {
ke "${@}" -- bash
}
function kb() { kbash "${@}" }
function kpsql() {
ke "${@}" -- \
sudo -i -u 'postgres' -- \
psql
}
function kq() { kpsql "${@}" }
function k_l() {
command="${1}"
selector="${2}"
if shift && shift
then
"${command}" "$(kgpn -l "${selector}" | sed -e 's@pods/@@' | head -n 1)" "${@}"
else
echo "usage: ${0} command selector" >&2
return 1
fi
}
function k_a() {
command="${1}"
application_name="${2}"
if shift && shift
then
k_l "${command}" "application=${application_name}" "${@}"
else
echo "usage: ${0} command application_name" >&2
return 1
fi
}
function kll() { k_l kl "${@}" }
function kla() { k_a kl "${@}" }
function klfl() { k_l klf "${@}" }
function klfa() { k_a klf "${@}" }
function kel() { k_l ke "${@}" }
function kea() { k_a ke "${@}" }
function kshl() { k_l ksh "${@}" }
function ksha() { k_a ksh "${@}" }
function kbl() { k_l kb "${@}" }
function kba() { k_a kb "${@}" }
function kpgopl() { kla 'postgres-operator' "${@}" }
function kpgoplf() { klfa 'postgres-operator' "${@}" }
function kpguil() { kla 'postgres-operator-ui' "${@}" }
function kpguilf() { klfa 'postgres-operator-ui' "${@}" }
alias kspilos='kgp --selector=''application=spilo'''
alias kspilosj='kgpj --selector=''application=spilo'''
alias kspilosy='kgpy --selector=''application=spilo'''
alias kspilosn='kgpn --selector=''application=spilo'''
function kss() { kspilos "${@}" }
function kssj() { kspilosj "${@}" }
function kssy() { kspilosy "${@}" }
function kssn() { kspilosn "${@}" }
alias kspilosprimary='kgp --selector=''application=spilo,spilo-role=master'''
alias kspilosprimaryj='kgpj --selector=''application=spilo,spilo-role=master'''
alias kspilosprimaryy='kgpy --selector=''application=spilo,spilo-role=master'''
alias kspilosprimaryn='kgpn --selector=''application=spilo,spilo-role=master'''
function kssp() { kspilosprimary "${@}" }
function ksspj() { kspilosprimaryj "${@}" }
function ksspy() { kspilosprimaryy "${@}" }
function ksspn() { kspilosprimaryn "${@}" }
alias kspilosreplica='kgp --selector=''application=spilo,spilo-role=replica'''
function kssr() { kspilosreplica "${@}" }
function ksspn() { kssp --output=name "${@}" }
function kssrn() { kssr --output=name "${@}" }
function kssop() { ksspn "${@}" }
function kssor() { kssrn "${@}" }
function kspilo() {
pg_cluster_name="${1}"
if shift
then
kgp --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloj() {
pg_cluster_name="${1}"
if shift
then
kgpj --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloy() {
pg_cluster_name="${1}"
if shift
then
kgpy --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspilon() {
pg_cluster_name="${1}"
if shift
then
kgpn --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function ks() { kspilo "${@}" }
function ksj() { kspiloj "${@}" }
function ksy() { kspiloy "${@}" }
function ksn() { kspilon "${@}" }
function kspiloprimary() {
pg_cluster_name="${1}"
if shift
then
kgp "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloprimaryj() {
pg_cluster_name="${1}"
if shift
then
kgpj "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloprimaryy() {
pg_cluster_name="${1}"
if shift
then
kgpy "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloprimaryn() {
pg_cluster_name="${1}"
if shift
then
kgpn "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function ksp() { kspiloprimary "${@}" }
function kspj() { kspiloprimaryj "${@}" }
function kspy() { kspiloprimaryy "${@}" }
function kspn() { kspiloprimaryn "${@}" }
function kspiloreplica() {
pg_cluster_name="${1}"
if shift
then
kgp "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=replica"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloreplicaj() {
pg_cluster_name="${1}"
if shift
then
kgpj "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=replica"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloreplicay() {
pg_cluster_name="${1}"
if shift
then
kgpy "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=replica"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kspiloreplican() {
pg_cluster_name="${1}"
if shift
then
kgpn "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=replica"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function ksr() { kspiloreplica "${@}" }
function ksrj() { kspiloreplicaj "${@}" }
function ksry() { kspiloreplicay "${@}" }
function ksrn() { kspiloreplican "${@}" }
function klspiloprimary() {
pg_cluster_name="${1}"
if shift
then
kl "$(kspn "${pg_cluster_name}")" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function klsp() { klspiloprimary "${@}" }
function kspl() { klsp "${@}" }
function kespiloprimary() {
pg_cluster_name="${1}"
if shift
then
ke "$(kspn "${pg_cluster_name}")" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function kesp() { kespiloprimary "${@}" }
function kspe() { kesp "${@}" }
function kspiloprimarybash() {
kesp "${@}" -- bash
}
function kspb() { kspiloprimarybash "${@}" }
function kbsp() { kspb "${@}" }
function kspiloprimarypsql() {
kesp "${@}" -- \
sudo -i -u 'postgres' -- \
psql
}
function kspq() { kspiloprimarypsql "${@}" }
function kqsp() { kspq "${@}" }
function kspilopatronictl() {
pg_cluster_name="${1}"
patronictl_command="${2}"
if shift && shift
then
ke "$(ksn "${pg_cluster_name}" | lines | head -n 1)" --container='postgres' -- \
sudo -i -u 'postgres' -- \
patronictl "${patronictl_command}" "${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name patronictl_command" >&2
return 1
fi
}
function ksc() { kspilopatronictl "${@}" }
function kmini() { kcfg use-context minikube "${@}" }
function mk() { kubectl --context=minikube "${@}" }
function mkg() { mk get --show-all --output=wide --show-labels "${@}" }
function mkgj() { mkg --output=json "${@}" }
function mkgy() { mkg --output=yaml "${@}" }
function mkgn() { mkg --output=name "${@}" }
function mkgp() { mkg pods "${@}" }
function mkgpj() { mkgj pods "${@}" }
function mkgpy() { mkgy pods "${@}" }
function mkgpn() { mkgn pods "${@}" }
function mkga() { mkg all "${@}" }
function mkgaj() { mkgj all "${@}" }
function mkgay() { mkgy all "${@}" }
function mkgan() { mkgn all "${@}" }
function mkd() { mk describe "${@}" }
function mkD() { mk delete "${@}" }
function mkE() { mk edit "${@}" }
function mkC() { mk create "${@}" }
function mkCf() { mkc -f "${@}" }
function mkl() { mk logs "${@}" }
function mklf() { mkl --follow "${@}" }
function mkt() { mk top "${@}" }
function mke() { mk exec -it "${@}" }
function mkconf() { mk config "${@}" }
function mkcfg() { mkconf "${@}" }
function mkr() { mk run "${@}" }
function mkpf() { mk port-forward "${@}" }
function mksh() {
mke "${@}" -- sh
}
function mkbash() {
mke "${@}" -- bash
}
function mkb() { mkbash "${@}" }
function mkpsql() {
mke "${@}" -- sudo -i -u 'postgres' -- psql
}
function mkq() { mkpsql "${@}" }
function mk_l() {
command="${1}"
selector="${2}"
if shift && shift
then
"${command}" "$(mkgpn -l "${selector}" | sed -e 's@pods/@@' | head -n 1)" "${@}"
else
echo "usage: ${0} command selector" >&2
return 1
fi
}
function mk_a() {
command="${1}"
application_name="${2}"
if shift && shift
then
mk_l "${command}" "application=${application_name}" "${@}"
else
echo "usage: ${0} command application_name" >&2
return 1
fi
}
function mkll() { mk_l mkl "${@}" }
function mkla() { mk_a mkl "${@}" }
function mklfl() { mk_l mklf "${@}" }
function mklfa() { mk_a mklf "${@}" }
function mkel() { mk_l mke "${@}" }
function mkea() { mk_a mke "${@}" }
function mkshl() { mk_l mksh "${@}" }
function mksha() { mk_a mksh "${@}" }
function mkbl() { mk_l mkb "${@}" }
function mkba() { mk_a mkb "${@}" }
function mkpgopl() { mkla postgres-operator "${@}" }
function mkpgoplf() { mklfa postgres-operator "${@}" }
function mkpguil() { mkla postgres-operator-ui "${@}" }
function mkpguilf() { mklfa postgres-operator-ui "${@}" }
alias mkspilos='mkgp --selector=''application=spilo'''
alias mkspilosj='mkgpj --selector=''application=spilo'''
alias mkspilosy='mkgpy --selector=''application=spilo'''
alias mkspilosn='mkgpn --selector=''application=spilo'''
function mkss() { mkspilos "${@}" }
function mkssj() { mkspilosj "${@}" }
function mkssy() { mkspilosy "${@}" }
function mkssn() { mkspilosn "${@}" }
alias mkspilosprimary='mkgp --selector=''application=spilo,spilo-role=master'''
alias mkspilosprimaryj='mkgpj --selector=''application=spilo,spilo-role=master'''
alias mkspilosprimaryy='mkgpy --selector=''application=spilo,spilo-role=master'''
alias mkspilosprimaryn='mkgpn --selector=''application=spilo,spilo-role=master'''
function mkssp() { mkspilosprimary "${@}" }
function mksspj() { mkspilosprimaryj "${@}" }
function mksspy() { mkspilosprimaryy "${@}" }
function mksspn() { mkspilosprimaryn "${@}" }
alias mkspilosreplica='mkgp --selector=''application=spilo,spilo-role=replica'''
function mkssr() { mkspilosreplica "${@}" }
function mksspn() { mkssp --output=name "${@}" }
function mkssrn() { mkssr --output=name "${@}" }
function mkssop() { mksspn "${@}" }
function mkssor() { mkssrn "${@}" }
function mkspilo() {
pg_cluster_name="${1}"
if shift
then
mkgp --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspiloj() {
pg_cluster_name="${1}"
if shift
then
mkgpj --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspiloy() {
pg_cluster_name="${1}"
if shift
then
mkgpy --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspilon() {
pg_cluster_name="${1}"
if shift
then
mkgpn --selector="application=spilo,version=${pg_cluster_name}" "${@}"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mks() { mkspilo "${@}" }
function mksj() { mkspiloj "${@}" }
function mksy() { mkspiloy "${@}" }
function mksn() { mkspilon "${@}" }
function mkspiloprimary() {
pg_cluster_name="${1}"
if shift
then
mkgp "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspiloprimaryj() {
pg_cluster_name="${1}"
if shift
then
mkgpj "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspiloprimaryy() {
pg_cluster_name="${1}"
if shift
then
mkgpy "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspiloprimaryn() {
pg_cluster_name="${1}"
if shift
then
mkgpn "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=master"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mksp() { mkspiloprimary "${@}" }
function mkspj() { mkspiloprimaryj "${@}" }
function mkspy() { mkspiloprimaryy "${@}" }
function mkspn() { mkspiloprimaryn "${@}" }
function mkspiloreplica() {
pg_cluster_name="${1}"
if shift
then
mkgp "${@}" --selector="application=spilo,version=${pg_cluster_name},spilo-role=replica"
else
echo "usage: ${0} cluster_name" >&2
return 1
fi
}
function mkspiloreplicaj() {
pg_cluster_name="${1}"
if shift