forked from ahmetb/kubectl-aliases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kubectl_aliases.fish
804 lines (803 loc) · 54.4 KB
/
.kubectl_aliases.fish
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
# Copyright 2019 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
abbr --add k "kubectl"
abbr --add ksys "kubectl --namespace=kube-system"
abbr --add ka "kubectl apply --recursive -f"
abbr --add ksysa "kubectl --namespace=kube-system apply --recursive -f"
abbr --add kak "kubectl apply -k"
abbr --add kk "kubectl kustomize"
abbr --add kex "kubectl exec -i -t"
abbr --add ksysex "kubectl --namespace=kube-system exec -i -t"
abbr --add klo "kubectl logs -f"
abbr --add ksyslo "kubectl --namespace=kube-system logs -f"
abbr --add klop "kubectl logs -f -p"
abbr --add ksyslop "kubectl --namespace=kube-system logs -f -p"
abbr --add kp "kubectl proxy"
abbr --add kpf "kubectl port-forward"
abbr --add kg "kubectl get"
abbr --add ksysg "kubectl --namespace=kube-system get"
abbr --add kd "kubectl describe"
abbr --add ksysd "kubectl --namespace=kube-system describe"
abbr --add krm "kubectl delete"
abbr --add ksysrm "kubectl --namespace=kube-system delete"
abbr --add krun "kubectl run --rm --restart=Never --image-pull-policy=IfNotPresent -i -t"
abbr --add ksysrun "kubectl --namespace=kube-system run --rm --restart=Never --image-pull-policy=IfNotPresent -i -t"
abbr --add kgpo "kubectl get pods"
abbr --add ksysgpo "kubectl --namespace=kube-system get pods"
abbr --add kdpo "kubectl describe pods"
abbr --add ksysdpo "kubectl --namespace=kube-system describe pods"
abbr --add krmpo "kubectl delete pods"
abbr --add ksysrmpo "kubectl --namespace=kube-system delete pods"
abbr --add kgdep "kubectl get deployment"
abbr --add ksysgdep "kubectl --namespace=kube-system get deployment"
abbr --add kddep "kubectl describe deployment"
abbr --add ksysddep "kubectl --namespace=kube-system describe deployment"
abbr --add krmdep "kubectl delete deployment"
abbr --add ksysrmdep "kubectl --namespace=kube-system delete deployment"
abbr --add kgsvc "kubectl get service"
abbr --add ksysgsvc "kubectl --namespace=kube-system get service"
abbr --add kdsvc "kubectl describe service"
abbr --add ksysdsvc "kubectl --namespace=kube-system describe service"
abbr --add krmsvc "kubectl delete service"
abbr --add ksysrmsvc "kubectl --namespace=kube-system delete service"
abbr --add kging "kubectl get ingress"
abbr --add ksysging "kubectl --namespace=kube-system get ingress"
abbr --add kding "kubectl describe ingress"
abbr --add ksysding "kubectl --namespace=kube-system describe ingress"
abbr --add krming "kubectl delete ingress"
abbr --add ksysrming "kubectl --namespace=kube-system delete ingress"
abbr --add kgcm "kubectl get configmap"
abbr --add ksysgcm "kubectl --namespace=kube-system get configmap"
abbr --add kdcm "kubectl describe configmap"
abbr --add ksysdcm "kubectl --namespace=kube-system describe configmap"
abbr --add krmcm "kubectl delete configmap"
abbr --add ksysrmcm "kubectl --namespace=kube-system delete configmap"
abbr --add kgsec "kubectl get secret"
abbr --add ksysgsec "kubectl --namespace=kube-system get secret"
abbr --add kdsec "kubectl describe secret"
abbr --add ksysdsec "kubectl --namespace=kube-system describe secret"
abbr --add krmsec "kubectl delete secret"
abbr --add ksysrmsec "kubectl --namespace=kube-system delete secret"
abbr --add kgno "kubectl get nodes"
abbr --add kdno "kubectl describe nodes"
abbr --add kgns "kubectl get namespaces"
abbr --add kdns "kubectl describe namespaces"
abbr --add krmns "kubectl delete namespaces"
abbr --add kgoyaml "kubectl get -o=yaml"
abbr --add ksysgoyaml "kubectl --namespace=kube-system get -o=yaml"
abbr --add kgpooyaml "kubectl get pods -o=yaml"
abbr --add ksysgpooyaml "kubectl --namespace=kube-system get pods -o=yaml"
abbr --add kgdepoyaml "kubectl get deployment -o=yaml"
abbr --add ksysgdepoyaml "kubectl --namespace=kube-system get deployment -o=yaml"
abbr --add kgsvcoyaml "kubectl get service -o=yaml"
abbr --add ksysgsvcoyaml "kubectl --namespace=kube-system get service -o=yaml"
abbr --add kgingoyaml "kubectl get ingress -o=yaml"
abbr --add ksysgingoyaml "kubectl --namespace=kube-system get ingress -o=yaml"
abbr --add kgcmoyaml "kubectl get configmap -o=yaml"
abbr --add ksysgcmoyaml "kubectl --namespace=kube-system get configmap -o=yaml"
abbr --add kgsecoyaml "kubectl get secret -o=yaml"
abbr --add ksysgsecoyaml "kubectl --namespace=kube-system get secret -o=yaml"
abbr --add kgnooyaml "kubectl get nodes -o=yaml"
abbr --add kgnsoyaml "kubectl get namespaces -o=yaml"
abbr --add kgowide "kubectl get -o=wide"
abbr --add ksysgowide "kubectl --namespace=kube-system get -o=wide"
abbr --add kgpoowide "kubectl get pods -o=wide"
abbr --add ksysgpoowide "kubectl --namespace=kube-system get pods -o=wide"
abbr --add kgdepowide "kubectl get deployment -o=wide"
abbr --add ksysgdepowide "kubectl --namespace=kube-system get deployment -o=wide"
abbr --add kgsvcowide "kubectl get service -o=wide"
abbr --add ksysgsvcowide "kubectl --namespace=kube-system get service -o=wide"
abbr --add kgingowide "kubectl get ingress -o=wide"
abbr --add ksysgingowide "kubectl --namespace=kube-system get ingress -o=wide"
abbr --add kgcmowide "kubectl get configmap -o=wide"
abbr --add ksysgcmowide "kubectl --namespace=kube-system get configmap -o=wide"
abbr --add kgsecowide "kubectl get secret -o=wide"
abbr --add ksysgsecowide "kubectl --namespace=kube-system get secret -o=wide"
abbr --add kgnoowide "kubectl get nodes -o=wide"
abbr --add kgnsowide "kubectl get namespaces -o=wide"
abbr --add kgojson "kubectl get -o=json"
abbr --add ksysgojson "kubectl --namespace=kube-system get -o=json"
abbr --add kgpoojson "kubectl get pods -o=json"
abbr --add ksysgpoojson "kubectl --namespace=kube-system get pods -o=json"
abbr --add kgdepojson "kubectl get deployment -o=json"
abbr --add ksysgdepojson "kubectl --namespace=kube-system get deployment -o=json"
abbr --add kgsvcojson "kubectl get service -o=json"
abbr --add ksysgsvcojson "kubectl --namespace=kube-system get service -o=json"
abbr --add kgingojson "kubectl get ingress -o=json"
abbr --add ksysgingojson "kubectl --namespace=kube-system get ingress -o=json"
abbr --add kgcmojson "kubectl get configmap -o=json"
abbr --add ksysgcmojson "kubectl --namespace=kube-system get configmap -o=json"
abbr --add kgsecojson "kubectl get secret -o=json"
abbr --add ksysgsecojson "kubectl --namespace=kube-system get secret -o=json"
abbr --add kgnoojson "kubectl get nodes -o=json"
abbr --add kgnsojson "kubectl get namespaces -o=json"
abbr --add kgall "kubectl get --all-namespaces"
abbr --add kdall "kubectl describe --all-namespaces"
abbr --add kgpoall "kubectl get pods --all-namespaces"
abbr --add kdpoall "kubectl describe pods --all-namespaces"
abbr --add kgdepall "kubectl get deployment --all-namespaces"
abbr --add kddepall "kubectl describe deployment --all-namespaces"
abbr --add kgsvcall "kubectl get service --all-namespaces"
abbr --add kdsvcall "kubectl describe service --all-namespaces"
abbr --add kgingall "kubectl get ingress --all-namespaces"
abbr --add kdingall "kubectl describe ingress --all-namespaces"
abbr --add kgcmall "kubectl get configmap --all-namespaces"
abbr --add kdcmall "kubectl describe configmap --all-namespaces"
abbr --add kgsecall "kubectl get secret --all-namespaces"
abbr --add kdsecall "kubectl describe secret --all-namespaces"
abbr --add kgnsall "kubectl get namespaces --all-namespaces"
abbr --add kdnsall "kubectl describe namespaces --all-namespaces"
abbr --add kgsl "kubectl get --show-labels"
abbr --add ksysgsl "kubectl --namespace=kube-system get --show-labels"
abbr --add kgposl "kubectl get pods --show-labels"
abbr --add ksysgposl "kubectl --namespace=kube-system get pods --show-labels"
abbr --add kgdepsl "kubectl get deployment --show-labels"
abbr --add ksysgdepsl "kubectl --namespace=kube-system get deployment --show-labels"
abbr --add krmall "kubectl delete --all"
abbr --add ksysrmall "kubectl --namespace=kube-system delete --all"
abbr --add krmpoall "kubectl delete pods --all"
abbr --add ksysrmpoall "kubectl --namespace=kube-system delete pods --all"
abbr --add krmdepall "kubectl delete deployment --all"
abbr --add ksysrmdepall "kubectl --namespace=kube-system delete deployment --all"
abbr --add krmsvcall "kubectl delete service --all"
abbr --add ksysrmsvcall "kubectl --namespace=kube-system delete service --all"
abbr --add krmingall "kubectl delete ingress --all"
abbr --add ksysrmingall "kubectl --namespace=kube-system delete ingress --all"
abbr --add krmcmall "kubectl delete configmap --all"
abbr --add ksysrmcmall "kubectl --namespace=kube-system delete configmap --all"
abbr --add krmsecall "kubectl delete secret --all"
abbr --add ksysrmsecall "kubectl --namespace=kube-system delete secret --all"
abbr --add krmnsall "kubectl delete namespaces --all"
abbr --add kgw "kubectl get --watch"
abbr --add ksysgw "kubectl --namespace=kube-system get --watch"
abbr --add kgpow "kubectl get pods --watch"
abbr --add ksysgpow "kubectl --namespace=kube-system get pods --watch"
abbr --add kgdepw "kubectl get deployment --watch"
abbr --add ksysgdepw "kubectl --namespace=kube-system get deployment --watch"
abbr --add kgsvcw "kubectl get service --watch"
abbr --add ksysgsvcw "kubectl --namespace=kube-system get service --watch"
abbr --add kgingw "kubectl get ingress --watch"
abbr --add ksysgingw "kubectl --namespace=kube-system get ingress --watch"
abbr --add kgcmw "kubectl get configmap --watch"
abbr --add ksysgcmw "kubectl --namespace=kube-system get configmap --watch"
abbr --add kgsecw "kubectl get secret --watch"
abbr --add ksysgsecw "kubectl --namespace=kube-system get secret --watch"
abbr --add kgnow "kubectl get nodes --watch"
abbr --add kgnsw "kubectl get namespaces --watch"
abbr --add kgoyamlall "kubectl get -o=yaml --all-namespaces"
abbr --add kgpooyamlall "kubectl get pods -o=yaml --all-namespaces"
abbr --add kgdepoyamlall "kubectl get deployment -o=yaml --all-namespaces"
abbr --add kgsvcoyamlall "kubectl get service -o=yaml --all-namespaces"
abbr --add kgingoyamlall "kubectl get ingress -o=yaml --all-namespaces"
abbr --add kgcmoyamlall "kubectl get configmap -o=yaml --all-namespaces"
abbr --add kgsecoyamlall "kubectl get secret -o=yaml --all-namespaces"
abbr --add kgnsoyamlall "kubectl get namespaces -o=yaml --all-namespaces"
abbr --add kgalloyaml "kubectl get --all-namespaces -o=yaml"
abbr --add kgpoalloyaml "kubectl get pods --all-namespaces -o=yaml"
abbr --add kgdepalloyaml "kubectl get deployment --all-namespaces -o=yaml"
abbr --add kgsvcalloyaml "kubectl get service --all-namespaces -o=yaml"
abbr --add kgingalloyaml "kubectl get ingress --all-namespaces -o=yaml"
abbr --add kgcmalloyaml "kubectl get configmap --all-namespaces -o=yaml"
abbr --add kgsecalloyaml "kubectl get secret --all-namespaces -o=yaml"
abbr --add kgnsalloyaml "kubectl get namespaces --all-namespaces -o=yaml"
abbr --add kgwoyaml "kubectl get --watch -o=yaml"
abbr --add ksysgwoyaml "kubectl --namespace=kube-system get --watch -o=yaml"
abbr --add kgpowoyaml "kubectl get pods --watch -o=yaml"
abbr --add ksysgpowoyaml "kubectl --namespace=kube-system get pods --watch -o=yaml"
abbr --add kgdepwoyaml "kubectl get deployment --watch -o=yaml"
abbr --add ksysgdepwoyaml "kubectl --namespace=kube-system get deployment --watch -o=yaml"
abbr --add kgsvcwoyaml "kubectl get service --watch -o=yaml"
abbr --add ksysgsvcwoyaml "kubectl --namespace=kube-system get service --watch -o=yaml"
abbr --add kgingwoyaml "kubectl get ingress --watch -o=yaml"
abbr --add ksysgingwoyaml "kubectl --namespace=kube-system get ingress --watch -o=yaml"
abbr --add kgcmwoyaml "kubectl get configmap --watch -o=yaml"
abbr --add ksysgcmwoyaml "kubectl --namespace=kube-system get configmap --watch -o=yaml"
abbr --add kgsecwoyaml "kubectl get secret --watch -o=yaml"
abbr --add ksysgsecwoyaml "kubectl --namespace=kube-system get secret --watch -o=yaml"
abbr --add kgnowoyaml "kubectl get nodes --watch -o=yaml"
abbr --add kgnswoyaml "kubectl get namespaces --watch -o=yaml"
abbr --add kgowideall "kubectl get -o=wide --all-namespaces"
abbr --add kgpoowideall "kubectl get pods -o=wide --all-namespaces"
abbr --add kgdepowideall "kubectl get deployment -o=wide --all-namespaces"
abbr --add kgsvcowideall "kubectl get service -o=wide --all-namespaces"
abbr --add kgingowideall "kubectl get ingress -o=wide --all-namespaces"
abbr --add kgcmowideall "kubectl get configmap -o=wide --all-namespaces"
abbr --add kgsecowideall "kubectl get secret -o=wide --all-namespaces"
abbr --add kgnsowideall "kubectl get namespaces -o=wide --all-namespaces"
abbr --add kgallowide "kubectl get --all-namespaces -o=wide"
abbr --add kgpoallowide "kubectl get pods --all-namespaces -o=wide"
abbr --add kgdepallowide "kubectl get deployment --all-namespaces -o=wide"
abbr --add kgsvcallowide "kubectl get service --all-namespaces -o=wide"
abbr --add kgingallowide "kubectl get ingress --all-namespaces -o=wide"
abbr --add kgcmallowide "kubectl get configmap --all-namespaces -o=wide"
abbr --add kgsecallowide "kubectl get secret --all-namespaces -o=wide"
abbr --add kgnsallowide "kubectl get namespaces --all-namespaces -o=wide"
abbr --add kgowidesl "kubectl get -o=wide --show-labels"
abbr --add ksysgowidesl "kubectl --namespace=kube-system get -o=wide --show-labels"
abbr --add kgpoowidesl "kubectl get pods -o=wide --show-labels"
abbr --add ksysgpoowidesl "kubectl --namespace=kube-system get pods -o=wide --show-labels"
abbr --add kgdepowidesl "kubectl get deployment -o=wide --show-labels"
abbr --add ksysgdepowidesl "kubectl --namespace=kube-system get deployment -o=wide --show-labels"
abbr --add kgslowide "kubectl get --show-labels -o=wide"
abbr --add ksysgslowide "kubectl --namespace=kube-system get --show-labels -o=wide"
abbr --add kgposlowide "kubectl get pods --show-labels -o=wide"
abbr --add ksysgposlowide "kubectl --namespace=kube-system get pods --show-labels -o=wide"
abbr --add kgdepslowide "kubectl get deployment --show-labels -o=wide"
abbr --add ksysgdepslowide "kubectl --namespace=kube-system get deployment --show-labels -o=wide"
abbr --add kgwowide "kubectl get --watch -o=wide"
abbr --add ksysgwowide "kubectl --namespace=kube-system get --watch -o=wide"
abbr --add kgpowowide "kubectl get pods --watch -o=wide"
abbr --add ksysgpowowide "kubectl --namespace=kube-system get pods --watch -o=wide"
abbr --add kgdepwowide "kubectl get deployment --watch -o=wide"
abbr --add ksysgdepwowide "kubectl --namespace=kube-system get deployment --watch -o=wide"
abbr --add kgsvcwowide "kubectl get service --watch -o=wide"
abbr --add ksysgsvcwowide "kubectl --namespace=kube-system get service --watch -o=wide"
abbr --add kgingwowide "kubectl get ingress --watch -o=wide"
abbr --add ksysgingwowide "kubectl --namespace=kube-system get ingress --watch -o=wide"
abbr --add kgcmwowide "kubectl get configmap --watch -o=wide"
abbr --add ksysgcmwowide "kubectl --namespace=kube-system get configmap --watch -o=wide"
abbr --add kgsecwowide "kubectl get secret --watch -o=wide"
abbr --add ksysgsecwowide "kubectl --namespace=kube-system get secret --watch -o=wide"
abbr --add kgnowowide "kubectl get nodes --watch -o=wide"
abbr --add kgnswowide "kubectl get namespaces --watch -o=wide"
abbr --add kgojsonall "kubectl get -o=json --all-namespaces"
abbr --add kgpoojsonall "kubectl get pods -o=json --all-namespaces"
abbr --add kgdepojsonall "kubectl get deployment -o=json --all-namespaces"
abbr --add kgsvcojsonall "kubectl get service -o=json --all-namespaces"
abbr --add kgingojsonall "kubectl get ingress -o=json --all-namespaces"
abbr --add kgcmojsonall "kubectl get configmap -o=json --all-namespaces"
abbr --add kgsecojsonall "kubectl get secret -o=json --all-namespaces"
abbr --add kgnsojsonall "kubectl get namespaces -o=json --all-namespaces"
abbr --add kgallojson "kubectl get --all-namespaces -o=json"
abbr --add kgpoallojson "kubectl get pods --all-namespaces -o=json"
abbr --add kgdepallojson "kubectl get deployment --all-namespaces -o=json"
abbr --add kgsvcallojson "kubectl get service --all-namespaces -o=json"
abbr --add kgingallojson "kubectl get ingress --all-namespaces -o=json"
abbr --add kgcmallojson "kubectl get configmap --all-namespaces -o=json"
abbr --add kgsecallojson "kubectl get secret --all-namespaces -o=json"
abbr --add kgnsallojson "kubectl get namespaces --all-namespaces -o=json"
abbr --add kgwojson "kubectl get --watch -o=json"
abbr --add ksysgwojson "kubectl --namespace=kube-system get --watch -o=json"
abbr --add kgpowojson "kubectl get pods --watch -o=json"
abbr --add ksysgpowojson "kubectl --namespace=kube-system get pods --watch -o=json"
abbr --add kgdepwojson "kubectl get deployment --watch -o=json"
abbr --add ksysgdepwojson "kubectl --namespace=kube-system get deployment --watch -o=json"
abbr --add kgsvcwojson "kubectl get service --watch -o=json"
abbr --add ksysgsvcwojson "kubectl --namespace=kube-system get service --watch -o=json"
abbr --add kgingwojson "kubectl get ingress --watch -o=json"
abbr --add ksysgingwojson "kubectl --namespace=kube-system get ingress --watch -o=json"
abbr --add kgcmwojson "kubectl get configmap --watch -o=json"
abbr --add ksysgcmwojson "kubectl --namespace=kube-system get configmap --watch -o=json"
abbr --add kgsecwojson "kubectl get secret --watch -o=json"
abbr --add ksysgsecwojson "kubectl --namespace=kube-system get secret --watch -o=json"
abbr --add kgnowojson "kubectl get nodes --watch -o=json"
abbr --add kgnswojson "kubectl get namespaces --watch -o=json"
abbr --add kgallsl "kubectl get --all-namespaces --show-labels"
abbr --add kgpoallsl "kubectl get pods --all-namespaces --show-labels"
abbr --add kgdepallsl "kubectl get deployment --all-namespaces --show-labels"
abbr --add kgslall "kubectl get --show-labels --all-namespaces"
abbr --add kgposlall "kubectl get pods --show-labels --all-namespaces"
abbr --add kgdepslall "kubectl get deployment --show-labels --all-namespaces"
abbr --add kgallw "kubectl get --all-namespaces --watch"
abbr --add kgpoallw "kubectl get pods --all-namespaces --watch"
abbr --add kgdepallw "kubectl get deployment --all-namespaces --watch"
abbr --add kgsvcallw "kubectl get service --all-namespaces --watch"
abbr --add kgingallw "kubectl get ingress --all-namespaces --watch"
abbr --add kgcmallw "kubectl get configmap --all-namespaces --watch"
abbr --add kgsecallw "kubectl get secret --all-namespaces --watch"
abbr --add kgnsallw "kubectl get namespaces --all-namespaces --watch"
abbr --add kgwall "kubectl get --watch --all-namespaces"
abbr --add kgpowall "kubectl get pods --watch --all-namespaces"
abbr --add kgdepwall "kubectl get deployment --watch --all-namespaces"
abbr --add kgsvcwall "kubectl get service --watch --all-namespaces"
abbr --add kgingwall "kubectl get ingress --watch --all-namespaces"
abbr --add kgcmwall "kubectl get configmap --watch --all-namespaces"
abbr --add kgsecwall "kubectl get secret --watch --all-namespaces"
abbr --add kgnswall "kubectl get namespaces --watch --all-namespaces"
abbr --add kgslw "kubectl get --show-labels --watch"
abbr --add ksysgslw "kubectl --namespace=kube-system get --show-labels --watch"
abbr --add kgposlw "kubectl get pods --show-labels --watch"
abbr --add ksysgposlw "kubectl --namespace=kube-system get pods --show-labels --watch"
abbr --add kgdepslw "kubectl get deployment --show-labels --watch"
abbr --add ksysgdepslw "kubectl --namespace=kube-system get deployment --show-labels --watch"
abbr --add kgwsl "kubectl get --watch --show-labels"
abbr --add ksysgwsl "kubectl --namespace=kube-system get --watch --show-labels"
abbr --add kgpowsl "kubectl get pods --watch --show-labels"
abbr --add ksysgpowsl "kubectl --namespace=kube-system get pods --watch --show-labels"
abbr --add kgdepwsl "kubectl get deployment --watch --show-labels"
abbr --add ksysgdepwsl "kubectl --namespace=kube-system get deployment --watch --show-labels"
abbr --add kgallwoyaml "kubectl get --all-namespaces --watch -o=yaml"
abbr --add kgpoallwoyaml "kubectl get pods --all-namespaces --watch -o=yaml"
abbr --add kgdepallwoyaml "kubectl get deployment --all-namespaces --watch -o=yaml"
abbr --add kgsvcallwoyaml "kubectl get service --all-namespaces --watch -o=yaml"
abbr --add kgingallwoyaml "kubectl get ingress --all-namespaces --watch -o=yaml"
abbr --add kgcmallwoyaml "kubectl get configmap --all-namespaces --watch -o=yaml"
abbr --add kgsecallwoyaml "kubectl get secret --all-namespaces --watch -o=yaml"
abbr --add kgnsallwoyaml "kubectl get namespaces --all-namespaces --watch -o=yaml"
abbr --add kgwoyamlall "kubectl get --watch -o=yaml --all-namespaces"
abbr --add kgpowoyamlall "kubectl get pods --watch -o=yaml --all-namespaces"
abbr --add kgdepwoyamlall "kubectl get deployment --watch -o=yaml --all-namespaces"
abbr --add kgsvcwoyamlall "kubectl get service --watch -o=yaml --all-namespaces"
abbr --add kgingwoyamlall "kubectl get ingress --watch -o=yaml --all-namespaces"
abbr --add kgcmwoyamlall "kubectl get configmap --watch -o=yaml --all-namespaces"
abbr --add kgsecwoyamlall "kubectl get secret --watch -o=yaml --all-namespaces"
abbr --add kgnswoyamlall "kubectl get namespaces --watch -o=yaml --all-namespaces"
abbr --add kgwalloyaml "kubectl get --watch --all-namespaces -o=yaml"
abbr --add kgpowalloyaml "kubectl get pods --watch --all-namespaces -o=yaml"
abbr --add kgdepwalloyaml "kubectl get deployment --watch --all-namespaces -o=yaml"
abbr --add kgsvcwalloyaml "kubectl get service --watch --all-namespaces -o=yaml"
abbr --add kgingwalloyaml "kubectl get ingress --watch --all-namespaces -o=yaml"
abbr --add kgcmwalloyaml "kubectl get configmap --watch --all-namespaces -o=yaml"
abbr --add kgsecwalloyaml "kubectl get secret --watch --all-namespaces -o=yaml"
abbr --add kgnswalloyaml "kubectl get namespaces --watch --all-namespaces -o=yaml"
abbr --add kgowideallsl "kubectl get -o=wide --all-namespaces --show-labels"
abbr --add kgpoowideallsl "kubectl get pods -o=wide --all-namespaces --show-labels"
abbr --add kgdepowideallsl "kubectl get deployment -o=wide --all-namespaces --show-labels"
abbr --add kgowideslall "kubectl get -o=wide --show-labels --all-namespaces"
abbr --add kgpoowideslall "kubectl get pods -o=wide --show-labels --all-namespaces"
abbr --add kgdepowideslall "kubectl get deployment -o=wide --show-labels --all-namespaces"
abbr --add kgallowidesl "kubectl get --all-namespaces -o=wide --show-labels"
abbr --add kgpoallowidesl "kubectl get pods --all-namespaces -o=wide --show-labels"
abbr --add kgdepallowidesl "kubectl get deployment --all-namespaces -o=wide --show-labels"
abbr --add kgallslowide "kubectl get --all-namespaces --show-labels -o=wide"
abbr --add kgpoallslowide "kubectl get pods --all-namespaces --show-labels -o=wide"
abbr --add kgdepallslowide "kubectl get deployment --all-namespaces --show-labels -o=wide"
abbr --add kgslowideall "kubectl get --show-labels -o=wide --all-namespaces"
abbr --add kgposlowideall "kubectl get pods --show-labels -o=wide --all-namespaces"
abbr --add kgdepslowideall "kubectl get deployment --show-labels -o=wide --all-namespaces"
abbr --add kgslallowide "kubectl get --show-labels --all-namespaces -o=wide"
abbr --add kgposlallowide "kubectl get pods --show-labels --all-namespaces -o=wide"
abbr --add kgdepslallowide "kubectl get deployment --show-labels --all-namespaces -o=wide"
abbr --add kgallwowide "kubectl get --all-namespaces --watch -o=wide"
abbr --add kgpoallwowide "kubectl get pods --all-namespaces --watch -o=wide"
abbr --add kgdepallwowide "kubectl get deployment --all-namespaces --watch -o=wide"
abbr --add kgsvcallwowide "kubectl get service --all-namespaces --watch -o=wide"
abbr --add kgingallwowide "kubectl get ingress --all-namespaces --watch -o=wide"
abbr --add kgcmallwowide "kubectl get configmap --all-namespaces --watch -o=wide"
abbr --add kgsecallwowide "kubectl get secret --all-namespaces --watch -o=wide"
abbr --add kgnsallwowide "kubectl get namespaces --all-namespaces --watch -o=wide"
abbr --add kgwowideall "kubectl get --watch -o=wide --all-namespaces"
abbr --add kgpowowideall "kubectl get pods --watch -o=wide --all-namespaces"
abbr --add kgdepwowideall "kubectl get deployment --watch -o=wide --all-namespaces"
abbr --add kgsvcwowideall "kubectl get service --watch -o=wide --all-namespaces"
abbr --add kgingwowideall "kubectl get ingress --watch -o=wide --all-namespaces"
abbr --add kgcmwowideall "kubectl get configmap --watch -o=wide --all-namespaces"
abbr --add kgsecwowideall "kubectl get secret --watch -o=wide --all-namespaces"
abbr --add kgnswowideall "kubectl get namespaces --watch -o=wide --all-namespaces"
abbr --add kgwallowide "kubectl get --watch --all-namespaces -o=wide"
abbr --add kgpowallowide "kubectl get pods --watch --all-namespaces -o=wide"
abbr --add kgdepwallowide "kubectl get deployment --watch --all-namespaces -o=wide"
abbr --add kgsvcwallowide "kubectl get service --watch --all-namespaces -o=wide"
abbr --add kgingwallowide "kubectl get ingress --watch --all-namespaces -o=wide"
abbr --add kgcmwallowide "kubectl get configmap --watch --all-namespaces -o=wide"
abbr --add kgsecwallowide "kubectl get secret --watch --all-namespaces -o=wide"
abbr --add kgnswallowide "kubectl get namespaces --watch --all-namespaces -o=wide"
abbr --add kgslwowide "kubectl get --show-labels --watch -o=wide"
abbr --add ksysgslwowide "kubectl --namespace=kube-system get --show-labels --watch -o=wide"
abbr --add kgposlwowide "kubectl get pods --show-labels --watch -o=wide"
abbr --add ksysgposlwowide "kubectl --namespace=kube-system get pods --show-labels --watch -o=wide"
abbr --add kgdepslwowide "kubectl get deployment --show-labels --watch -o=wide"
abbr --add ksysgdepslwowide "kubectl --namespace=kube-system get deployment --show-labels --watch -o=wide"
abbr --add kgwowidesl "kubectl get --watch -o=wide --show-labels"
abbr --add ksysgwowidesl "kubectl --namespace=kube-system get --watch -o=wide --show-labels"
abbr --add kgpowowidesl "kubectl get pods --watch -o=wide --show-labels"
abbr --add ksysgpowowidesl "kubectl --namespace=kube-system get pods --watch -o=wide --show-labels"
abbr --add kgdepwowidesl "kubectl get deployment --watch -o=wide --show-labels"
abbr --add ksysgdepwowidesl "kubectl --namespace=kube-system get deployment --watch -o=wide --show-labels"
abbr --add kgwslowide "kubectl get --watch --show-labels -o=wide"
abbr --add ksysgwslowide "kubectl --namespace=kube-system get --watch --show-labels -o=wide"
abbr --add kgpowslowide "kubectl get pods --watch --show-labels -o=wide"
abbr --add ksysgpowslowide "kubectl --namespace=kube-system get pods --watch --show-labels -o=wide"
abbr --add kgdepwslowide "kubectl get deployment --watch --show-labels -o=wide"
abbr --add ksysgdepwslowide "kubectl --namespace=kube-system get deployment --watch --show-labels -o=wide"
abbr --add kgallwojson "kubectl get --all-namespaces --watch -o=json"
abbr --add kgpoallwojson "kubectl get pods --all-namespaces --watch -o=json"
abbr --add kgdepallwojson "kubectl get deployment --all-namespaces --watch -o=json"
abbr --add kgsvcallwojson "kubectl get service --all-namespaces --watch -o=json"
abbr --add kgingallwojson "kubectl get ingress --all-namespaces --watch -o=json"
abbr --add kgcmallwojson "kubectl get configmap --all-namespaces --watch -o=json"
abbr --add kgsecallwojson "kubectl get secret --all-namespaces --watch -o=json"
abbr --add kgnsallwojson "kubectl get namespaces --all-namespaces --watch -o=json"
abbr --add kgwojsonall "kubectl get --watch -o=json --all-namespaces"
abbr --add kgpowojsonall "kubectl get pods --watch -o=json --all-namespaces"
abbr --add kgdepwojsonall "kubectl get deployment --watch -o=json --all-namespaces"
abbr --add kgsvcwojsonall "kubectl get service --watch -o=json --all-namespaces"
abbr --add kgingwojsonall "kubectl get ingress --watch -o=json --all-namespaces"
abbr --add kgcmwojsonall "kubectl get configmap --watch -o=json --all-namespaces"
abbr --add kgsecwojsonall "kubectl get secret --watch -o=json --all-namespaces"
abbr --add kgnswojsonall "kubectl get namespaces --watch -o=json --all-namespaces"
abbr --add kgwallojson "kubectl get --watch --all-namespaces -o=json"
abbr --add kgpowallojson "kubectl get pods --watch --all-namespaces -o=json"
abbr --add kgdepwallojson "kubectl get deployment --watch --all-namespaces -o=json"
abbr --add kgsvcwallojson "kubectl get service --watch --all-namespaces -o=json"
abbr --add kgingwallojson "kubectl get ingress --watch --all-namespaces -o=json"
abbr --add kgcmwallojson "kubectl get configmap --watch --all-namespaces -o=json"
abbr --add kgsecwallojson "kubectl get secret --watch --all-namespaces -o=json"
abbr --add kgnswallojson "kubectl get namespaces --watch --all-namespaces -o=json"
abbr --add kgallslw "kubectl get --all-namespaces --show-labels --watch"
abbr --add kgpoallslw "kubectl get pods --all-namespaces --show-labels --watch"
abbr --add kgdepallslw "kubectl get deployment --all-namespaces --show-labels --watch"
abbr --add kgallwsl "kubectl get --all-namespaces --watch --show-labels"
abbr --add kgpoallwsl "kubectl get pods --all-namespaces --watch --show-labels"
abbr --add kgdepallwsl "kubectl get deployment --all-namespaces --watch --show-labels"
abbr --add kgslallw "kubectl get --show-labels --all-namespaces --watch"
abbr --add kgposlallw "kubectl get pods --show-labels --all-namespaces --watch"
abbr --add kgdepslallw "kubectl get deployment --show-labels --all-namespaces --watch"
abbr --add kgslwall "kubectl get --show-labels --watch --all-namespaces"
abbr --add kgposlwall "kubectl get pods --show-labels --watch --all-namespaces"
abbr --add kgdepslwall "kubectl get deployment --show-labels --watch --all-namespaces"
abbr --add kgwallsl "kubectl get --watch --all-namespaces --show-labels"
abbr --add kgpowallsl "kubectl get pods --watch --all-namespaces --show-labels"
abbr --add kgdepwallsl "kubectl get deployment --watch --all-namespaces --show-labels"
abbr --add kgwslall "kubectl get --watch --show-labels --all-namespaces"
abbr --add kgpowslall "kubectl get pods --watch --show-labels --all-namespaces"
abbr --add kgdepwslall "kubectl get deployment --watch --show-labels --all-namespaces"
abbr --add kgallslwowide "kubectl get --all-namespaces --show-labels --watch -o=wide"
abbr --add kgpoallslwowide "kubectl get pods --all-namespaces --show-labels --watch -o=wide"
abbr --add kgdepallslwowide "kubectl get deployment --all-namespaces --show-labels --watch -o=wide"
abbr --add kgallwowidesl "kubectl get --all-namespaces --watch -o=wide --show-labels"
abbr --add kgpoallwowidesl "kubectl get pods --all-namespaces --watch -o=wide --show-labels"
abbr --add kgdepallwowidesl "kubectl get deployment --all-namespaces --watch -o=wide --show-labels"
abbr --add kgallwslowide "kubectl get --all-namespaces --watch --show-labels -o=wide"
abbr --add kgpoallwslowide "kubectl get pods --all-namespaces --watch --show-labels -o=wide"
abbr --add kgdepallwslowide "kubectl get deployment --all-namespaces --watch --show-labels -o=wide"
abbr --add kgslallwowide "kubectl get --show-labels --all-namespaces --watch -o=wide"
abbr --add kgposlallwowide "kubectl get pods --show-labels --all-namespaces --watch -o=wide"
abbr --add kgdepslallwowide "kubectl get deployment --show-labels --all-namespaces --watch -o=wide"
abbr --add kgslwowideall "kubectl get --show-labels --watch -o=wide --all-namespaces"
abbr --add kgposlwowideall "kubectl get pods --show-labels --watch -o=wide --all-namespaces"
abbr --add kgdepslwowideall "kubectl get deployment --show-labels --watch -o=wide --all-namespaces"
abbr --add kgslwallowide "kubectl get --show-labels --watch --all-namespaces -o=wide"
abbr --add kgposlwallowide "kubectl get pods --show-labels --watch --all-namespaces -o=wide"
abbr --add kgdepslwallowide "kubectl get deployment --show-labels --watch --all-namespaces -o=wide"
abbr --add kgwowideallsl "kubectl get --watch -o=wide --all-namespaces --show-labels"
abbr --add kgpowowideallsl "kubectl get pods --watch -o=wide --all-namespaces --show-labels"
abbr --add kgdepwowideallsl "kubectl get deployment --watch -o=wide --all-namespaces --show-labels"
abbr --add kgwowideslall "kubectl get --watch -o=wide --show-labels --all-namespaces"
abbr --add kgpowowideslall "kubectl get pods --watch -o=wide --show-labels --all-namespaces"
abbr --add kgdepwowideslall "kubectl get deployment --watch -o=wide --show-labels --all-namespaces"
abbr --add kgwallowidesl "kubectl get --watch --all-namespaces -o=wide --show-labels"
abbr --add kgpowallowidesl "kubectl get pods --watch --all-namespaces -o=wide --show-labels"
abbr --add kgdepwallowidesl "kubectl get deployment --watch --all-namespaces -o=wide --show-labels"
abbr --add kgwallslowide "kubectl get --watch --all-namespaces --show-labels -o=wide"
abbr --add kgpowallslowide "kubectl get pods --watch --all-namespaces --show-labels -o=wide"
abbr --add kgdepwallslowide "kubectl get deployment --watch --all-namespaces --show-labels -o=wide"
abbr --add kgwslowideall "kubectl get --watch --show-labels -o=wide --all-namespaces"
abbr --add kgpowslowideall "kubectl get pods --watch --show-labels -o=wide --all-namespaces"
abbr --add kgdepwslowideall "kubectl get deployment --watch --show-labels -o=wide --all-namespaces"
abbr --add kgwslallowide "kubectl get --watch --show-labels --all-namespaces -o=wide"
abbr --add kgpowslallowide "kubectl get pods --watch --show-labels --all-namespaces -o=wide"
abbr --add kgdepwslallowide "kubectl get deployment --watch --show-labels --all-namespaces -o=wide"
abbr --add kgf "kubectl get --recursive -f"
abbr --add kdf "kubectl describe --recursive -f"
abbr --add krmf "kubectl delete --recursive -f"
abbr --add kgoyamlf "kubectl get -o=yaml --recursive -f"
abbr --add kgowidef "kubectl get -o=wide --recursive -f"
abbr --add kgojsonf "kubectl get -o=json --recursive -f"
abbr --add kgslf "kubectl get --show-labels --recursive -f"
abbr --add kgwf "kubectl get --watch --recursive -f"
abbr --add kgwoyamlf "kubectl get --watch -o=yaml --recursive -f"
abbr --add kgowideslf "kubectl get -o=wide --show-labels --recursive -f"
abbr --add kgslowidef "kubectl get --show-labels -o=wide --recursive -f"
abbr --add kgwowidef "kubectl get --watch -o=wide --recursive -f"
abbr --add kgwojsonf "kubectl get --watch -o=json --recursive -f"
abbr --add kgslwf "kubectl get --show-labels --watch --recursive -f"
abbr --add kgwslf "kubectl get --watch --show-labels --recursive -f"
abbr --add kgslwowidef "kubectl get --show-labels --watch -o=wide --recursive -f"
abbr --add kgwowideslf "kubectl get --watch -o=wide --show-labels --recursive -f"
abbr --add kgwslowidef "kubectl get --watch --show-labels -o=wide --recursive -f"
abbr --add kgl "kubectl get -l"
abbr --add ksysgl "kubectl --namespace=kube-system get -l"
abbr --add kdl "kubectl describe -l"
abbr --add ksysdl "kubectl --namespace=kube-system describe -l"
abbr --add krml "kubectl delete -l"
abbr --add ksysrml "kubectl --namespace=kube-system delete -l"
abbr --add kgpol "kubectl get pods -l"
abbr --add ksysgpol "kubectl --namespace=kube-system get pods -l"
abbr --add kdpol "kubectl describe pods -l"
abbr --add ksysdpol "kubectl --namespace=kube-system describe pods -l"
abbr --add krmpol "kubectl delete pods -l"
abbr --add ksysrmpol "kubectl --namespace=kube-system delete pods -l"
abbr --add kgdepl "kubectl get deployment -l"
abbr --add ksysgdepl "kubectl --namespace=kube-system get deployment -l"
abbr --add kddepl "kubectl describe deployment -l"
abbr --add ksysddepl "kubectl --namespace=kube-system describe deployment -l"
abbr --add krmdepl "kubectl delete deployment -l"
abbr --add ksysrmdepl "kubectl --namespace=kube-system delete deployment -l"
abbr --add kgsvcl "kubectl get service -l"
abbr --add ksysgsvcl "kubectl --namespace=kube-system get service -l"
abbr --add kdsvcl "kubectl describe service -l"
abbr --add ksysdsvcl "kubectl --namespace=kube-system describe service -l"
abbr --add krmsvcl "kubectl delete service -l"
abbr --add ksysrmsvcl "kubectl --namespace=kube-system delete service -l"
abbr --add kgingl "kubectl get ingress -l"
abbr --add ksysgingl "kubectl --namespace=kube-system get ingress -l"
abbr --add kdingl "kubectl describe ingress -l"
abbr --add ksysdingl "kubectl --namespace=kube-system describe ingress -l"
abbr --add krmingl "kubectl delete ingress -l"
abbr --add ksysrmingl "kubectl --namespace=kube-system delete ingress -l"
abbr --add kgcml "kubectl get configmap -l"
abbr --add ksysgcml "kubectl --namespace=kube-system get configmap -l"
abbr --add kdcml "kubectl describe configmap -l"
abbr --add ksysdcml "kubectl --namespace=kube-system describe configmap -l"
abbr --add krmcml "kubectl delete configmap -l"
abbr --add ksysrmcml "kubectl --namespace=kube-system delete configmap -l"
abbr --add kgsecl "kubectl get secret -l"
abbr --add ksysgsecl "kubectl --namespace=kube-system get secret -l"
abbr --add kdsecl "kubectl describe secret -l"
abbr --add ksysdsecl "kubectl --namespace=kube-system describe secret -l"
abbr --add krmsecl "kubectl delete secret -l"
abbr --add ksysrmsecl "kubectl --namespace=kube-system delete secret -l"
abbr --add kgnol "kubectl get nodes -l"
abbr --add kdnol "kubectl describe nodes -l"
abbr --add kgnsl "kubectl get namespaces -l"
abbr --add kdnsl "kubectl describe namespaces -l"
abbr --add krmnsl "kubectl delete namespaces -l"
abbr --add kgoyamll "kubectl get -o=yaml -l"
abbr --add ksysgoyamll "kubectl --namespace=kube-system get -o=yaml -l"
abbr --add kgpooyamll "kubectl get pods -o=yaml -l"
abbr --add ksysgpooyamll "kubectl --namespace=kube-system get pods -o=yaml -l"
abbr --add kgdepoyamll "kubectl get deployment -o=yaml -l"
abbr --add ksysgdepoyamll "kubectl --namespace=kube-system get deployment -o=yaml -l"
abbr --add kgsvcoyamll "kubectl get service -o=yaml -l"
abbr --add ksysgsvcoyamll "kubectl --namespace=kube-system get service -o=yaml -l"
abbr --add kgingoyamll "kubectl get ingress -o=yaml -l"
abbr --add ksysgingoyamll "kubectl --namespace=kube-system get ingress -o=yaml -l"
abbr --add kgcmoyamll "kubectl get configmap -o=yaml -l"
abbr --add ksysgcmoyamll "kubectl --namespace=kube-system get configmap -o=yaml -l"
abbr --add kgsecoyamll "kubectl get secret -o=yaml -l"
abbr --add ksysgsecoyamll "kubectl --namespace=kube-system get secret -o=yaml -l"
abbr --add kgnooyamll "kubectl get nodes -o=yaml -l"
abbr --add kgnsoyamll "kubectl get namespaces -o=yaml -l"
abbr --add kgowidel "kubectl get -o=wide -l"
abbr --add ksysgowidel "kubectl --namespace=kube-system get -o=wide -l"
abbr --add kgpoowidel "kubectl get pods -o=wide -l"
abbr --add ksysgpoowidel "kubectl --namespace=kube-system get pods -o=wide -l"
abbr --add kgdepowidel "kubectl get deployment -o=wide -l"
abbr --add ksysgdepowidel "kubectl --namespace=kube-system get deployment -o=wide -l"
abbr --add kgsvcowidel "kubectl get service -o=wide -l"
abbr --add ksysgsvcowidel "kubectl --namespace=kube-system get service -o=wide -l"
abbr --add kgingowidel "kubectl get ingress -o=wide -l"
abbr --add ksysgingowidel "kubectl --namespace=kube-system get ingress -o=wide -l"
abbr --add kgcmowidel "kubectl get configmap -o=wide -l"
abbr --add ksysgcmowidel "kubectl --namespace=kube-system get configmap -o=wide -l"
abbr --add kgsecowidel "kubectl get secret -o=wide -l"
abbr --add ksysgsecowidel "kubectl --namespace=kube-system get secret -o=wide -l"
abbr --add kgnoowidel "kubectl get nodes -o=wide -l"
abbr --add kgnsowidel "kubectl get namespaces -o=wide -l"
abbr --add kgojsonl "kubectl get -o=json -l"
abbr --add ksysgojsonl "kubectl --namespace=kube-system get -o=json -l"
abbr --add kgpoojsonl "kubectl get pods -o=json -l"
abbr --add ksysgpoojsonl "kubectl --namespace=kube-system get pods -o=json -l"
abbr --add kgdepojsonl "kubectl get deployment -o=json -l"
abbr --add ksysgdepojsonl "kubectl --namespace=kube-system get deployment -o=json -l"
abbr --add kgsvcojsonl "kubectl get service -o=json -l"
abbr --add ksysgsvcojsonl "kubectl --namespace=kube-system get service -o=json -l"
abbr --add kgingojsonl "kubectl get ingress -o=json -l"
abbr --add ksysgingojsonl "kubectl --namespace=kube-system get ingress -o=json -l"
abbr --add kgcmojsonl "kubectl get configmap -o=json -l"
abbr --add ksysgcmojsonl "kubectl --namespace=kube-system get configmap -o=json -l"
abbr --add kgsecojsonl "kubectl get secret -o=json -l"
abbr --add ksysgsecojsonl "kubectl --namespace=kube-system get secret -o=json -l"
abbr --add kgnoojsonl "kubectl get nodes -o=json -l"
abbr --add kgnsojsonl "kubectl get namespaces -o=json -l"
abbr --add kgsll "kubectl get --show-labels -l"
abbr --add ksysgsll "kubectl --namespace=kube-system get --show-labels -l"
abbr --add kgposll "kubectl get pods --show-labels -l"
abbr --add ksysgposll "kubectl --namespace=kube-system get pods --show-labels -l"
abbr --add kgdepsll "kubectl get deployment --show-labels -l"
abbr --add ksysgdepsll "kubectl --namespace=kube-system get deployment --show-labels -l"
abbr --add kgwl "kubectl get --watch -l"
abbr --add ksysgwl "kubectl --namespace=kube-system get --watch -l"
abbr --add kgpowl "kubectl get pods --watch -l"
abbr --add ksysgpowl "kubectl --namespace=kube-system get pods --watch -l"
abbr --add kgdepwl "kubectl get deployment --watch -l"
abbr --add ksysgdepwl "kubectl --namespace=kube-system get deployment --watch -l"
abbr --add kgsvcwl "kubectl get service --watch -l"
abbr --add ksysgsvcwl "kubectl --namespace=kube-system get service --watch -l"
abbr --add kgingwl "kubectl get ingress --watch -l"
abbr --add ksysgingwl "kubectl --namespace=kube-system get ingress --watch -l"
abbr --add kgcmwl "kubectl get configmap --watch -l"
abbr --add ksysgcmwl "kubectl --namespace=kube-system get configmap --watch -l"
abbr --add kgsecwl "kubectl get secret --watch -l"
abbr --add ksysgsecwl "kubectl --namespace=kube-system get secret --watch -l"
abbr --add kgnowl "kubectl get nodes --watch -l"
abbr --add kgnswl "kubectl get namespaces --watch -l"
abbr --add kgwoyamll "kubectl get --watch -o=yaml -l"
abbr --add ksysgwoyamll "kubectl --namespace=kube-system get --watch -o=yaml -l"
abbr --add kgpowoyamll "kubectl get pods --watch -o=yaml -l"
abbr --add ksysgpowoyamll "kubectl --namespace=kube-system get pods --watch -o=yaml -l"
abbr --add kgdepwoyamll "kubectl get deployment --watch -o=yaml -l"
abbr --add ksysgdepwoyamll "kubectl --namespace=kube-system get deployment --watch -o=yaml -l"
abbr --add kgsvcwoyamll "kubectl get service --watch -o=yaml -l"
abbr --add ksysgsvcwoyamll "kubectl --namespace=kube-system get service --watch -o=yaml -l"
abbr --add kgingwoyamll "kubectl get ingress --watch -o=yaml -l"
abbr --add ksysgingwoyamll "kubectl --namespace=kube-system get ingress --watch -o=yaml -l"
abbr --add kgcmwoyamll "kubectl get configmap --watch -o=yaml -l"
abbr --add ksysgcmwoyamll "kubectl --namespace=kube-system get configmap --watch -o=yaml -l"
abbr --add kgsecwoyamll "kubectl get secret --watch -o=yaml -l"
abbr --add ksysgsecwoyamll "kubectl --namespace=kube-system get secret --watch -o=yaml -l"
abbr --add kgnowoyamll "kubectl get nodes --watch -o=yaml -l"
abbr --add kgnswoyamll "kubectl get namespaces --watch -o=yaml -l"
abbr --add kgowidesll "kubectl get -o=wide --show-labels -l"
abbr --add ksysgowidesll "kubectl --namespace=kube-system get -o=wide --show-labels -l"
abbr --add kgpoowidesll "kubectl get pods -o=wide --show-labels -l"
abbr --add ksysgpoowidesll "kubectl --namespace=kube-system get pods -o=wide --show-labels -l"
abbr --add kgdepowidesll "kubectl get deployment -o=wide --show-labels -l"
abbr --add ksysgdepowidesll "kubectl --namespace=kube-system get deployment -o=wide --show-labels -l"
abbr --add kgslowidel "kubectl get --show-labels -o=wide -l"
abbr --add ksysgslowidel "kubectl --namespace=kube-system get --show-labels -o=wide -l"
abbr --add kgposlowidel "kubectl get pods --show-labels -o=wide -l"
abbr --add ksysgposlowidel "kubectl --namespace=kube-system get pods --show-labels -o=wide -l"
abbr --add kgdepslowidel "kubectl get deployment --show-labels -o=wide -l"
abbr --add ksysgdepslowidel "kubectl --namespace=kube-system get deployment --show-labels -o=wide -l"
abbr --add kgwowidel "kubectl get --watch -o=wide -l"
abbr --add ksysgwowidel "kubectl --namespace=kube-system get --watch -o=wide -l"
abbr --add kgpowowidel "kubectl get pods --watch -o=wide -l"
abbr --add ksysgpowowidel "kubectl --namespace=kube-system get pods --watch -o=wide -l"
abbr --add kgdepwowidel "kubectl get deployment --watch -o=wide -l"
abbr --add ksysgdepwowidel "kubectl --namespace=kube-system get deployment --watch -o=wide -l"
abbr --add kgsvcwowidel "kubectl get service --watch -o=wide -l"
abbr --add ksysgsvcwowidel "kubectl --namespace=kube-system get service --watch -o=wide -l"
abbr --add kgingwowidel "kubectl get ingress --watch -o=wide -l"
abbr --add ksysgingwowidel "kubectl --namespace=kube-system get ingress --watch -o=wide -l"
abbr --add kgcmwowidel "kubectl get configmap --watch -o=wide -l"
abbr --add ksysgcmwowidel "kubectl --namespace=kube-system get configmap --watch -o=wide -l"
abbr --add kgsecwowidel "kubectl get secret --watch -o=wide -l"
abbr --add ksysgsecwowidel "kubectl --namespace=kube-system get secret --watch -o=wide -l"
abbr --add kgnowowidel "kubectl get nodes --watch -o=wide -l"
abbr --add kgnswowidel "kubectl get namespaces --watch -o=wide -l"
abbr --add kgwojsonl "kubectl get --watch -o=json -l"
abbr --add ksysgwojsonl "kubectl --namespace=kube-system get --watch -o=json -l"
abbr --add kgpowojsonl "kubectl get pods --watch -o=json -l"
abbr --add ksysgpowojsonl "kubectl --namespace=kube-system get pods --watch -o=json -l"
abbr --add kgdepwojsonl "kubectl get deployment --watch -o=json -l"
abbr --add ksysgdepwojsonl "kubectl --namespace=kube-system get deployment --watch -o=json -l"
abbr --add kgsvcwojsonl "kubectl get service --watch -o=json -l"
abbr --add ksysgsvcwojsonl "kubectl --namespace=kube-system get service --watch -o=json -l"
abbr --add kgingwojsonl "kubectl get ingress --watch -o=json -l"
abbr --add ksysgingwojsonl "kubectl --namespace=kube-system get ingress --watch -o=json -l"
abbr --add kgcmwojsonl "kubectl get configmap --watch -o=json -l"
abbr --add ksysgcmwojsonl "kubectl --namespace=kube-system get configmap --watch -o=json -l"
abbr --add kgsecwojsonl "kubectl get secret --watch -o=json -l"
abbr --add ksysgsecwojsonl "kubectl --namespace=kube-system get secret --watch -o=json -l"
abbr --add kgnowojsonl "kubectl get nodes --watch -o=json -l"
abbr --add kgnswojsonl "kubectl get namespaces --watch -o=json -l"
abbr --add kgslwl "kubectl get --show-labels --watch -l"
abbr --add ksysgslwl "kubectl --namespace=kube-system get --show-labels --watch -l"
abbr --add kgposlwl "kubectl get pods --show-labels --watch -l"
abbr --add ksysgposlwl "kubectl --namespace=kube-system get pods --show-labels --watch -l"
abbr --add kgdepslwl "kubectl get deployment --show-labels --watch -l"
abbr --add ksysgdepslwl "kubectl --namespace=kube-system get deployment --show-labels --watch -l"
abbr --add kgwsll "kubectl get --watch --show-labels -l"
abbr --add ksysgwsll "kubectl --namespace=kube-system get --watch --show-labels -l"
abbr --add kgpowsll "kubectl get pods --watch --show-labels -l"
abbr --add ksysgpowsll "kubectl --namespace=kube-system get pods --watch --show-labels -l"
abbr --add kgdepwsll "kubectl get deployment --watch --show-labels -l"
abbr --add ksysgdepwsll "kubectl --namespace=kube-system get deployment --watch --show-labels -l"
abbr --add kgslwowidel "kubectl get --show-labels --watch -o=wide -l"
abbr --add ksysgslwowidel "kubectl --namespace=kube-system get --show-labels --watch -o=wide -l"
abbr --add kgposlwowidel "kubectl get pods --show-labels --watch -o=wide -l"
abbr --add ksysgposlwowidel "kubectl --namespace=kube-system get pods --show-labels --watch -o=wide -l"
abbr --add kgdepslwowidel "kubectl get deployment --show-labels --watch -o=wide -l"
abbr --add ksysgdepslwowidel "kubectl --namespace=kube-system get deployment --show-labels --watch -o=wide -l"
abbr --add kgwowidesll "kubectl get --watch -o=wide --show-labels -l"
abbr --add ksysgwowidesll "kubectl --namespace=kube-system get --watch -o=wide --show-labels -l"
abbr --add kgpowowidesll "kubectl get pods --watch -o=wide --show-labels -l"
abbr --add ksysgpowowidesll "kubectl --namespace=kube-system get pods --watch -o=wide --show-labels -l"
abbr --add kgdepwowidesll "kubectl get deployment --watch -o=wide --show-labels -l"
abbr --add ksysgdepwowidesll "kubectl --namespace=kube-system get deployment --watch -o=wide --show-labels -l"
abbr --add kgwslowidel "kubectl get --watch --show-labels -o=wide -l"
abbr --add ksysgwslowidel "kubectl --namespace=kube-system get --watch --show-labels -o=wide -l"
abbr --add kgpowslowidel "kubectl get pods --watch --show-labels -o=wide -l"
abbr --add ksysgpowslowidel "kubectl --namespace=kube-system get pods --watch --show-labels -o=wide -l"
abbr --add kgdepwslowidel "kubectl get deployment --watch --show-labels -o=wide -l"
abbr --add ksysgdepwslowidel "kubectl --namespace=kube-system get deployment --watch --show-labels -o=wide -l"
abbr --add kexn "kubectl exec -i -t --namespace"
abbr --add klon "kubectl logs -f --namespace"
abbr --add kpfn "kubectl port-forward --namespace"
abbr --add kgn "kubectl get --namespace"
abbr --add kdn "kubectl describe --namespace"
abbr --add krmn "kubectl delete --namespace"
abbr --add kgpon "kubectl get pods --namespace"
abbr --add kdpon "kubectl describe pods --namespace"
abbr --add krmpon "kubectl delete pods --namespace"
abbr --add kgdepn "kubectl get deployment --namespace"
abbr --add kddepn "kubectl describe deployment --namespace"
abbr --add krmdepn "kubectl delete deployment --namespace"
abbr --add kgsvcn "kubectl get service --namespace"
abbr --add kdsvcn "kubectl describe service --namespace"
abbr --add krmsvcn "kubectl delete service --namespace"
abbr --add kgingn "kubectl get ingress --namespace"
abbr --add kdingn "kubectl describe ingress --namespace"
abbr --add krmingn "kubectl delete ingress --namespace"
abbr --add kgcmn "kubectl get configmap --namespace"
abbr --add kdcmn "kubectl describe configmap --namespace"
abbr --add krmcmn "kubectl delete configmap --namespace"
abbr --add kgsecn "kubectl get secret --namespace"
abbr --add kdsecn "kubectl describe secret --namespace"
abbr --add krmsecn "kubectl delete secret --namespace"
abbr --add kgoyamln "kubectl get -o=yaml --namespace"
abbr --add kgpooyamln "kubectl get pods -o=yaml --namespace"
abbr --add kgdepoyamln "kubectl get deployment -o=yaml --namespace"
abbr --add kgsvcoyamln "kubectl get service -o=yaml --namespace"
abbr --add kgingoyamln "kubectl get ingress -o=yaml --namespace"
abbr --add kgcmoyamln "kubectl get configmap -o=yaml --namespace"
abbr --add kgsecoyamln "kubectl get secret -o=yaml --namespace"
abbr --add kgowiden "kubectl get -o=wide --namespace"
abbr --add kgpoowiden "kubectl get pods -o=wide --namespace"
abbr --add kgdepowiden "kubectl get deployment -o=wide --namespace"
abbr --add kgsvcowiden "kubectl get service -o=wide --namespace"
abbr --add kgingowiden "kubectl get ingress -o=wide --namespace"
abbr --add kgcmowiden "kubectl get configmap -o=wide --namespace"
abbr --add kgsecowiden "kubectl get secret -o=wide --namespace"
abbr --add kgojsonn "kubectl get -o=json --namespace"
abbr --add kgpoojsonn "kubectl get pods -o=json --namespace"
abbr --add kgdepojsonn "kubectl get deployment -o=json --namespace"
abbr --add kgsvcojsonn "kubectl get service -o=json --namespace"
abbr --add kgingojsonn "kubectl get ingress -o=json --namespace"
abbr --add kgcmojsonn "kubectl get configmap -o=json --namespace"
abbr --add kgsecojsonn "kubectl get secret -o=json --namespace"
abbr --add kgsln "kubectl get --show-labels --namespace"
abbr --add kgposln "kubectl get pods --show-labels --namespace"
abbr --add kgdepsln "kubectl get deployment --show-labels --namespace"
abbr --add kgwn "kubectl get --watch --namespace"
abbr --add kgpown "kubectl get pods --watch --namespace"
abbr --add kgdepwn "kubectl get deployment --watch --namespace"
abbr --add kgsvcwn "kubectl get service --watch --namespace"
abbr --add kgingwn "kubectl get ingress --watch --namespace"
abbr --add kgcmwn "kubectl get configmap --watch --namespace"
abbr --add kgsecwn "kubectl get secret --watch --namespace"
abbr --add kgwoyamln "kubectl get --watch -o=yaml --namespace"
abbr --add kgpowoyamln "kubectl get pods --watch -o=yaml --namespace"
abbr --add kgdepwoyamln "kubectl get deployment --watch -o=yaml --namespace"
abbr --add kgsvcwoyamln "kubectl get service --watch -o=yaml --namespace"
abbr --add kgingwoyamln "kubectl get ingress --watch -o=yaml --namespace"
abbr --add kgcmwoyamln "kubectl get configmap --watch -o=yaml --namespace"
abbr --add kgsecwoyamln "kubectl get secret --watch -o=yaml --namespace"
abbr --add kgowidesln "kubectl get -o=wide --show-labels --namespace"
abbr --add kgpoowidesln "kubectl get pods -o=wide --show-labels --namespace"
abbr --add kgdepowidesln "kubectl get deployment -o=wide --show-labels --namespace"
abbr --add kgslowiden "kubectl get --show-labels -o=wide --namespace"
abbr --add kgposlowiden "kubectl get pods --show-labels -o=wide --namespace"
abbr --add kgdepslowiden "kubectl get deployment --show-labels -o=wide --namespace"
abbr --add kgwowiden "kubectl get --watch -o=wide --namespace"
abbr --add kgpowowiden "kubectl get pods --watch -o=wide --namespace"
abbr --add kgdepwowiden "kubectl get deployment --watch -o=wide --namespace"
abbr --add kgsvcwowiden "kubectl get service --watch -o=wide --namespace"
abbr --add kgingwowiden "kubectl get ingress --watch -o=wide --namespace"
abbr --add kgcmwowiden "kubectl get configmap --watch -o=wide --namespace"
abbr --add kgsecwowiden "kubectl get secret --watch -o=wide --namespace"
abbr --add kgwojsonn "kubectl get --watch -o=json --namespace"
abbr --add kgpowojsonn "kubectl get pods --watch -o=json --namespace"
abbr --add kgdepwojsonn "kubectl get deployment --watch -o=json --namespace"
abbr --add kgsvcwojsonn "kubectl get service --watch -o=json --namespace"
abbr --add kgingwojsonn "kubectl get ingress --watch -o=json --namespace"
abbr --add kgcmwojsonn "kubectl get configmap --watch -o=json --namespace"
abbr --add kgsecwojsonn "kubectl get secret --watch -o=json --namespace"
abbr --add kgslwn "kubectl get --show-labels --watch --namespace"
abbr --add kgposlwn "kubectl get pods --show-labels --watch --namespace"
abbr --add kgdepslwn "kubectl get deployment --show-labels --watch --namespace"
abbr --add kgwsln "kubectl get --watch --show-labels --namespace"
abbr --add kgpowsln "kubectl get pods --watch --show-labels --namespace"
abbr --add kgdepwsln "kubectl get deployment --watch --show-labels --namespace"
abbr --add kgslwowiden "kubectl get --show-labels --watch -o=wide --namespace"
abbr --add kgposlwowiden "kubectl get pods --show-labels --watch -o=wide --namespace"
abbr --add kgdepslwowiden "kubectl get deployment --show-labels --watch -o=wide --namespace"
abbr --add kgwowidesln "kubectl get --watch -o=wide --show-labels --namespace"
abbr --add kgpowowidesln "kubectl get pods --watch -o=wide --show-labels --namespace"
abbr --add kgdepwowidesln "kubectl get deployment --watch -o=wide --show-labels --namespace"
abbr --add kgwslowiden "kubectl get --watch --show-labels -o=wide --namespace"
abbr --add kgpowslowiden "kubectl get pods --watch --show-labels -o=wide --namespace"
abbr --add kgdepwslowiden "kubectl get deployment --watch --show-labels -o=wide --namespace"