forked from openshift/sdn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glide.lock
1019 lines (1019 loc) · 28 KB
/
glide.lock
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
hash: 122fd9d891cbe0d4f4b6b39d70494f4417593ed1b27d41b308c2afbfd7925381
updated: 2019-09-25T16:12:00.96182745+02:00
imports:
- name: bitbucket.org/ww/goautoneg
version: 2ae31c8b6b30d2f4c8100c20d527b571e9c433bb
repo: https://github.com/munnerz/goautoneg.git
- name: github.com/Azure/go-ansiterm
version: d6e3b3328b783f23731bc4d058875b0371ff8109
subpackages:
- winterm
- name: github.com/beorn7/perks
version: 3a771d992973f24aa725d07868b467d1ddfceafb
subpackages:
- quantile
- name: github.com/blang/semver
version: b38d23b8782a487059e8fc8773e9a5b228a77cb6
- name: github.com/certifi/gocertifi
version: ee1a9a0726d2ae45f54118cac878c990d4016ded
- name: github.com/containernetworking/cni
version: a2da8f8d7fd8e6dc25f336408a8ac86f050fbd88
subpackages:
- pkg/invoke
- pkg/skel
- pkg/types
- pkg/types/020
- pkg/types/current
- pkg/version
- name: github.com/containernetworking/plugins
version: 7480240de9749f9a0a5c8614b17f1f03e0c06ab9
subpackages:
- pkg/ip
- pkg/ipam
- pkg/ns
- pkg/utils/hwaddr
- name: github.com/coreos/bbolt
version: 48ea1b39c25fc1bab3506fbc712ecbaa842c4d2d
- name: github.com/coreos/etcd
version: 27fc7e2296f506182f58ce846e48f36b34fe6842
subpackages:
- auth/authpb
- clientv3
- etcdserver/api/v3rpc/rpctypes
- etcdserver/etcdserverpb
- mvcc/mvccpb
- pkg/tlsutil
- pkg/transport
- pkg/types
- name: github.com/coreos/go-iptables
version: 259c8e6a4275d497442c721fa52204d7a58bde8b
subpackages:
- iptables
- name: github.com/coreos/go-systemd
version: e64a0ec8b42a61e2a9801dc1d0abe539dea79197
subpackages:
- daemon
- name: github.com/davecgh/go-spew
version: 8991bc29aa16c548c550c7ff78260e27b9ab7c73
subpackages:
- spew
- name: github.com/docker/distribution
version: 16128bbac47f75050e82f7e91b04df33775e0c23
subpackages:
- digestset
- reference
- name: github.com/docker/docker
version: be7ac8be2ae072032a4005e8f232be3fc57e4127
subpackages:
- pkg/term
- pkg/term/windows
- name: github.com/docker/go-units
version: 47565b4f722fb6ceae66b95f853feed578a4a51c
- name: github.com/docker/libnetwork
version: 7f13a5c99f4bb76a4122035d495984b6a09739bb
subpackages:
- ipvs
- name: github.com/docker/spdystream
version: 449fdfce4d962303d702fec724ef0ad181c92528
subpackages:
- spdy
- name: github.com/emicklei/go-restful
version: ff4f55a206334ef123e4f79bbf348980da81ca46
subpackages:
- log
- name: github.com/evanphx/json-patch
version: 5858425f75500d40c52783dce87d085a483ce135
- name: github.com/exponent-io/jsonpath
version: d6023ce2651d8eafb5c75bb0c7167536102ec9f5
- name: github.com/fsnotify/fsnotify
version: c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9
- name: github.com/getsentry/raven-go
version: c977f96e109525a5d8fa10a19165341f601f38b0
- name: github.com/ghodss/yaml
version: 73d445a93680fa1a78ae23a5839bad48f32ba1ee
- name: github.com/go-openapi/jsonpointer
version: 46af16f9f7b149af66e5d1bd010e3574dc06de98
- name: github.com/go-openapi/jsonreference
version: 13c6e3589ad90f49bd3e3bbe2c2cb3d7a4142272
- name: github.com/go-openapi/spec
version: 6aced65f8501fe1217321abf0749d354824ba2ff
- name: github.com/go-openapi/swag
version: 1d0bd113de87027671077d3c71eb3ac5d7dbba72
- name: github.com/godbus/dbus
version: 6eb4cf171088115fc4f087cb8a302859c601a546
- name: github.com/gogo/protobuf
version: 65acae22fc9d1fe290b33faa2bd64cdc20a463a0
subpackages:
- gogoproto
- proto
- protoc-gen-gogo/descriptor
- sortkeys
- name: github.com/golang/glog
version: 3c92600d7533018d216b534fe894ad60a1e6d5bf
repo: https://github.com/openshift/golang-glog.git
- name: github.com/golang/groupcache
version: 02826c3e79038b59d737d3b1c0a1d937f71a4433
subpackages:
- lru
- name: github.com/golang/protobuf
version: b5d812f8a3706043e23a9cd5babf2e5423744d30
subpackages:
- proto
- ptypes
- ptypes/any
- ptypes/duration
- ptypes/timestamp
- name: github.com/google/btree
version: be84af90a1f71c9eeac820a4cdacb863122396d6
- name: github.com/google/cadvisor
version: 8949c822ea91fa6b4996614a5ad6ade840be24ee
- name: github.com/google/go-cmp
version: 6f77996f0c42f7b84e5a2b252227263f93432e9b
subpackages:
- cmp
- cmp/internal/diff
- cmp/internal/flags
- cmp/internal/function
- cmp/internal/value
- name: github.com/google/gofuzz
version: f140a6486e521aad38f5917de355cbf147cc0496
- name: github.com/google/uuid
version: 0cd6bf5da1e1c83f8b45653022c74f71af0538a4
- name: github.com/googleapis/gnostic
version: 0c5108395e2debce0d731cf0287ddf7242066aba
subpackages:
- OpenAPIv2
- compiler
- extensions
- name: github.com/gorilla/mux
version: 884b5ffcbd3a11b730f0b75f5c86ac408753c34d
- name: github.com/gregjones/httpcache
version: 787624de3eb7bd915c329cba748687a3b22666a6
subpackages:
- diskcache
- name: github.com/grpc-ecosystem/go-grpc-prometheus
version: c225b8c3b01faf2899099b768856a9e916e5087b
- name: github.com/grpc-ecosystem/grpc-gateway
version: 8cc3a55af3bcf171a1c23a90c4df9cf591706104
- name: github.com/hashicorp/golang-lru
version: 7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c
subpackages:
- simplelru
- name: github.com/imdario/mergo
version: 9316a62528ac99aaecb4e47eadd6dc8aa6533d58
- name: github.com/inconshreveable/mousetrap
version: 76626ae9c91c4f2a10f34cad8ce83ea42c93bb75
- name: github.com/json-iterator/go
version: 27518f6661eba504be5a7a9a9f6d9460d892ade3
- name: github.com/jteeuwen/go-bindata
version: a0ff2567cfb70903282db057e799fd826784d41d
- name: github.com/konsorten/go-windows-terminal-sequences
version: 5c8c8bd35d3832f5d134ae1e1e375b69a4d25242
- name: github.com/lithammer/dedent
version: bacd562a68752afbd2c992df855db07be0db9bde
- name: github.com/mailru/easyjson
version: d5b7844b561a7bc640052f1b935f7b800330d7e0
subpackages:
- buffer
- jlexer
- jwriter
- name: github.com/MakeNowJust/heredoc
version: bb23615498cded5e105af4ce27de75b089cbe851
- name: github.com/matttproud/golang_protobuf_extensions
version: c12348ce28de40eed0136aa2b644d0ee0650e56c
subpackages:
- pbutil
- name: github.com/Microsoft/go-winio
version: fc70bd9a86b5562b3b5eb1040e803febee1e90a1
subpackages:
- pkg/guid
- name: github.com/Microsoft/hcsshim
version: 10079297f84d15d34549527f2290c1148ce450b3
subpackages:
- hcn
- internal/cni
- internal/cow
- internal/hcs
- internal/hcserror
- internal/hns
- internal/interop
- internal/log
- internal/logfields
- internal/longpath
- internal/mergemaps
- internal/oc
- internal/regstate
- internal/runhcs
- internal/safefile
- internal/schema1
- internal/schema2
- internal/timeout
- internal/vmcompute
- internal/wclayer
- name: github.com/miekg/dns
version: 5a2b9fab83ff0f8bfc99684bd5f43a37abe560f1
- name: github.com/mitchellh/go-wordwrap
version: 9e67c67572bc5dd02aef930e2b0ae3c02a4b5a5c
- name: github.com/modern-go/concurrent
version: bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94
- name: github.com/modern-go/reflect2
version: 94122c33edd36123c84d5368cfb2b69df93a0ec8
- name: github.com/munnerz/goautoneg
version: a547fc61f48d567d5b4ec6f8aee5573d8efce11d
- name: github.com/NYTimes/gziphandler
version: 56545f4a5d46df9a6648819d1664c3a03a13ffdb
- name: github.com/onsi/ginkgo
version: d0603c19fe78143eb81221b59025ebcb9b534957
repo: https://github.com/openshift/onsi-ginkgo.git
- name: github.com/opencontainers/go-digest
version: 279bed98673dd5bef374d3b6e4b09e2af76183bf
- name: github.com/opencontainers/runc
version: 7507c64ff675606c5ff96b0dd8889a60c589f14d
subpackages:
- libcontainer/cgroups
- libcontainer/configs
- libcontainer/utils
- name: github.com/opencontainers/runtime-spec
version: 52e2591aa9f7211d64c49c4fed8691a183189284
subpackages:
- specs-go
- name: github.com/openshift/api
version: 169848dd81372b8176b925c10b37a05424db5f2f
subpackages:
- config/v1
- network/v1
- unidling/v1alpha1
- name: github.com/openshift/client-go
version: 6afefc9bb37281f45d12d624156e39e363eaf4fd
subpackages:
- network/clientset/versioned
- network/clientset/versioned/scheme
- network/clientset/versioned/typed/network/v1
- network/informers/externalversions
- network/informers/externalversions/internalinterfaces
- network/informers/externalversions/network
- network/informers/externalversions/network/v1
- network/listers/network/v1
- name: github.com/openshift/library-go
version: 76b67dd70a86d147ea3e7677aa5f9682ff94770f
subpackages:
- pkg/config/leaderelection
- pkg/network/networkapihelpers
- pkg/network/networkutils
- pkg/serviceability
- name: github.com/pborman/uuid
version: 8b1b92947f46224e3b97bb1a3a5b0382be00d31e
- name: github.com/peterbourgon/diskv
version: 5f041e8faa004a95c88a202771f4cc3e991971e6
- name: github.com/pkg/errors
version: 645ef00459ed84a119197bfb8d8205042c6df63d
- name: github.com/pkg/profile
version: f6fe06335df110bcf1ed6d4e852b760bfc15beee
- name: github.com/prometheus/client_golang
version: 505eaef017263e299324067d40ca2c48f6a2cf50
subpackages:
- prometheus
- prometheus/internal
- prometheus/promhttp
- name: github.com/prometheus/client_model
version: 5c3871d89910bfb32f5fcab2aa4b9ec68e65a99f
subpackages:
- go
- name: github.com/prometheus/common
version: 4724e9255275ce38f7179b2478abeae4e28c904f
subpackages:
- expfmt
- internal/bitbucket.org/ww/goautoneg
- model
- name: github.com/prometheus/procfs
version: 1dc9a6cbc91aacc3e8b2d63db4d2e957a5394ac4
subpackages:
- internal/util
- nfs
- xfs
- name: github.com/PuerkitoBio/purell
version: 8a290539e2e8629dbc4e6bad948158f790ec31f4
- name: github.com/PuerkitoBio/urlesc
version: 5bd2802263f21d8788851d5305584c82a5c75d7e
- name: github.com/russross/blackfriday
version: 05f3235734ad95d0016f6a23902f06461fcf567a
- name: github.com/sirupsen/logrus
version: 839c75faf7f98a33d445d181f3018b5c3409a45e
- name: github.com/spf13/afero
version: 588a75ec4f32903aa5e39a2619ba6a4631e28424
subpackages:
- mem
- name: github.com/spf13/cobra
version: 67fc4837d267bc9bfd6e47f77783fcc3dffc68de
- name: github.com/spf13/pflag
version: 2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab
- name: github.com/vishvananda/netlink
version: 0e3b74dbe28f37fd911f9bca3565fdca33c03f29
subpackages:
- nl
- name: github.com/vishvananda/netns
version: 54f0e4339ce73702a0607f49922aaa1e749b418d
- name: go.opencensus.io
version: df6e2001952312404b06f5f6f03fcb4aec1648e5
subpackages:
- internal
- trace
- trace/internal
- trace/tracestate
- name: go4.org
version: 03efcb870d84809319ea509714dd6d19a1498483
repo: https://github.com/go4org/go4
subpackages:
- errorutil
- name: golang.org/x/crypto
version: e84da0312774c21d64ee2317962ef669b27ffb41
subpackages:
- ed25519
- ed25519/internal/edwards25519
- ssh/terminal
- name: golang.org/x/net
version: cdfb69ac37fc6fa907650654115ebebb3aae2087
subpackages:
- bpf
- context
- context/ctxhttp
- http/httpguts
- http2
- http2/hpack
- idna
- internal/iana
- internal/socket
- internal/timeseries
- ipv4
- ipv6
- trace
- websocket
- name: golang.org/x/oauth2
version: 9f3314589c9a9136388751d9adae6b0ed400978a
subpackages:
- internal
- name: golang.org/x/sys
version: 3b5209105503162ded1863c307ac66fec31120dd
subpackages:
- unix
- windows
- windows/registry
- windows/svc
- name: golang.org/x/text
version: e6919f6577db79269a6443b9dc46d18f2238fb5d
subpackages:
- cases
- encoding
- encoding/internal
- encoding/internal/identifier
- encoding/unicode
- internal
- internal/language
- internal/language/compact
- internal/tag
- internal/utf8internal
- language
- runes
- secure/bidirule
- secure/precis
- transform
- unicode/bidi
- unicode/norm
- width
- name: golang.org/x/time
version: f51c12702a4d776e4c1fa9b0fabab841babae631
subpackages:
- rate
- name: gonum.org/v1/gonum
version: cebdade430ccb61c1feba4878085f6cf8cb3320e
repo: https://github.com/gonum/gonum.git
- name: google.golang.org/appengine
version: 12d5545dc1cfa6047a286d5e853841b6471f4c19
subpackages:
- internal
- internal/base
- internal/datastore
- internal/log
- internal/remote_api
- internal/urlfetch
- urlfetch
- name: google.golang.org/genproto
version: e7d98fc518a78c9f8b5ee77be7b0b317475d89e1
subpackages:
- googleapis/rpc/status
- name: google.golang.org/grpc
version: 168a6198bcb0ef175f7dacec0b8691fc141dc9b8
subpackages:
- balancer
- balancer/base
- balancer/roundrobin
- codes
- connectivity
- credentials
- encoding
- encoding/proto
- grpclog
- health/grpc_health_v1
- internal
- internal/backoff
- internal/channelz
- internal/grpcrand
- keepalive
- metadata
- naming
- peer
- resolver
- resolver/dns
- resolver/passthrough
- stats
- status
- tap
- transport
- name: gopkg.in/inf.v0
version: 3887ee99ecf07df5b447e9b00d9c0b2adaa9f3e4
- name: gopkg.in/yaml.v2
version: 51d6538a90f86fe93ac480b35f37b2be17fef232
- name: k8s.io/api
version: 95b840bb6a1f5f0462af804c8589396d294d4914
subpackages:
- admission/v1
- admission/v1beta1
- admissionregistration/v1
- admissionregistration/v1beta1
- apps/v1
- apps/v1beta1
- apps/v1beta2
- auditregistration/v1alpha1
- authentication/v1
- authentication/v1beta1
- authorization/v1
- authorization/v1beta1
- autoscaling/v1
- autoscaling/v2beta1
- autoscaling/v2beta2
- batch/v1
- batch/v1beta1
- batch/v2alpha1
- certificates/v1beta1
- coordination/v1
- coordination/v1beta1
- core/v1
- discovery/v1alpha1
- events/v1beta1
- extensions/v1beta1
- imagepolicy/v1alpha1
- networking/v1
- networking/v1beta1
- node/v1alpha1
- node/v1beta1
- policy/v1beta1
- rbac/v1
- rbac/v1alpha1
- rbac/v1beta1
- scheduling/v1
- scheduling/v1alpha1
- scheduling/v1beta1
- settings/v1alpha1
- storage/v1
- storage/v1alpha1
- storage/v1beta1
- name: k8s.io/apiextensions-apiserver
version: 8f644eb6e783291c4b8cb8cb25a9983be1a74f5c
subpackages:
- pkg/features
- name: k8s.io/apimachinery
version: 27d36303b6556f377b4f34e64705fa9024a12b0c
subpackages:
- pkg/api/equality
- pkg/api/errors
- pkg/api/meta
- pkg/api/resource
- pkg/api/validation
- pkg/api/validation/path
- pkg/apis/meta/internalversion
- pkg/apis/meta/v1
- pkg/apis/meta/v1/unstructured
- pkg/apis/meta/v1/unstructured/unstructuredscheme
- pkg/apis/meta/v1/validation
- pkg/apis/meta/v1beta1
- pkg/apis/meta/v1beta1/validation
- pkg/conversion
- pkg/conversion/queryparams
- pkg/fields
- pkg/labels
- pkg/runtime
- pkg/runtime/schema
- pkg/runtime/serializer
- pkg/runtime/serializer/json
- pkg/runtime/serializer/protobuf
- pkg/runtime/serializer/recognizer
- pkg/runtime/serializer/streaming
- pkg/runtime/serializer/versioning
- pkg/selection
- pkg/types
- pkg/util/cache
- pkg/util/clock
- pkg/util/diff
- pkg/util/errors
- pkg/util/framer
- pkg/util/httpstream
- pkg/util/httpstream/spdy
- pkg/util/intstr
- pkg/util/json
- pkg/util/mergepatch
- pkg/util/naming
- pkg/util/net
- pkg/util/rand
- pkg/util/remotecommand
- pkg/util/runtime
- pkg/util/sets
- pkg/util/strategicpatch
- pkg/util/uuid
- pkg/util/validation
- pkg/util/validation/field
- pkg/util/version
- pkg/util/wait
- pkg/util/waitgroup
- pkg/util/yaml
- pkg/version
- pkg/watch
- third_party/forked/golang/json
- third_party/forked/golang/netutil
- third_party/forked/golang/reflect
- name: k8s.io/apiserver
version: bfa5e2e684ad413c22fd0dab55b2592af1ead049
subpackages:
- pkg/admission
- pkg/admission/configuration
- pkg/admission/initializer
- pkg/admission/metrics
- pkg/admission/plugin/namespace/lifecycle
- pkg/admission/plugin/webhook
- pkg/admission/plugin/webhook/config
- pkg/admission/plugin/webhook/config/apis/webhookadmission
- pkg/admission/plugin/webhook/config/apis/webhookadmission/v1alpha1
- pkg/admission/plugin/webhook/errors
- pkg/admission/plugin/webhook/generic
- pkg/admission/plugin/webhook/mutating
- pkg/admission/plugin/webhook/namespace
- pkg/admission/plugin/webhook/object
- pkg/admission/plugin/webhook/request
- pkg/admission/plugin/webhook/rules
- pkg/admission/plugin/webhook/validating
- pkg/apis/apiserver
- pkg/apis/apiserver/install
- pkg/apis/apiserver/v1alpha1
- pkg/apis/audit
- pkg/apis/audit/v1
- pkg/apis/audit/v1alpha1
- pkg/apis/audit/v1beta1
- pkg/apis/audit/validation
- pkg/audit
- pkg/audit/policy
- pkg/authentication/authenticator
- pkg/authentication/authenticatorfactory
- pkg/authentication/group
- pkg/authentication/request/anonymous
- pkg/authentication/request/bearertoken
- pkg/authentication/request/headerrequest
- pkg/authentication/request/union
- pkg/authentication/request/websocket
- pkg/authentication/request/x509
- pkg/authentication/serviceaccount
- pkg/authentication/token/cache
- pkg/authentication/token/tokenfile
- pkg/authentication/user
- pkg/authorization/authorizer
- pkg/authorization/authorizerfactory
- pkg/authorization/union
- pkg/endpoints
- pkg/endpoints/discovery
- pkg/endpoints/filters
- pkg/endpoints/handlers
- pkg/endpoints/handlers/fieldmanager
- pkg/endpoints/handlers/fieldmanager/internal
- pkg/endpoints/handlers/negotiation
- pkg/endpoints/handlers/responsewriters
- pkg/endpoints/metrics
- pkg/endpoints/openapi
- pkg/endpoints/request
- pkg/features
- pkg/registry/generic
- pkg/registry/rest
- pkg/server
- pkg/server/egressselector
- pkg/server/filters
- pkg/server/healthz
- pkg/server/httplog
- pkg/server/mux
- pkg/server/routes
- pkg/server/storage
- pkg/storage
- pkg/storage/etcd3
- pkg/storage/etcd3/metrics
- pkg/storage/names
- pkg/storage/storagebackend
- pkg/storage/storagebackend/factory
- pkg/storage/value
- pkg/util/dryrun
- pkg/util/feature
- pkg/util/flushwriter
- pkg/util/openapi
- pkg/util/webhook
- pkg/util/wsstream
- plugin/pkg/authenticator/token/webhook
- plugin/pkg/authorizer/webhook
- name: k8s.io/cli-runtime
version: f783a3654da8387af6f52378b0611c2d81ea4dd8
subpackages:
- pkg/genericclioptions
- pkg/kustomize
- pkg/kustomize/k8sdeps
- pkg/kustomize/k8sdeps/configmapandsecret
- pkg/kustomize/k8sdeps/kunstruct
- pkg/kustomize/k8sdeps/kv
- pkg/kustomize/k8sdeps/transformer
- pkg/kustomize/k8sdeps/transformer/hash
- pkg/kustomize/k8sdeps/transformer/patch
- pkg/kustomize/k8sdeps/validator
- pkg/printers
- pkg/resource
- name: k8s.io/client-go
version: 1fbdaa4c8d908275eee958429b1cafc2591a2c5d
subpackages:
- discovery
- discovery/cached/disk
- dynamic
- informers
- informers/admissionregistration
- informers/admissionregistration/v1
- informers/admissionregistration/v1beta1
- informers/apps
- informers/apps/v1
- informers/apps/v1beta1
- informers/apps/v1beta2
- informers/auditregistration
- informers/auditregistration/v1alpha1
- informers/autoscaling
- informers/autoscaling/v1
- informers/autoscaling/v2beta1
- informers/autoscaling/v2beta2
- informers/batch
- informers/batch/v1
- informers/batch/v1beta1
- informers/batch/v2alpha1
- informers/certificates
- informers/certificates/v1beta1
- informers/coordination
- informers/coordination/v1
- informers/coordination/v1beta1
- informers/core
- informers/core/v1
- informers/discovery
- informers/discovery/v1alpha1
- informers/events
- informers/events/v1beta1
- informers/extensions
- informers/extensions/v1beta1
- informers/internalinterfaces
- informers/networking
- informers/networking/v1
- informers/networking/v1beta1
- informers/node
- informers/node/v1alpha1
- informers/node/v1beta1
- informers/policy
- informers/policy/v1beta1
- informers/rbac
- informers/rbac/v1
- informers/rbac/v1alpha1
- informers/rbac/v1beta1
- informers/scheduling
- informers/scheduling/v1
- informers/scheduling/v1alpha1
- informers/scheduling/v1beta1
- informers/settings
- informers/settings/v1alpha1
- informers/storage
- informers/storage/v1
- informers/storage/v1alpha1
- informers/storage/v1beta1
- kubernetes
- kubernetes/scheme
- kubernetes/typed/admissionregistration/v1
- kubernetes/typed/admissionregistration/v1beta1
- kubernetes/typed/apps/v1
- kubernetes/typed/apps/v1beta1
- kubernetes/typed/apps/v1beta2
- kubernetes/typed/auditregistration/v1alpha1
- kubernetes/typed/authentication/v1
- kubernetes/typed/authentication/v1beta1
- kubernetes/typed/authorization/v1
- kubernetes/typed/authorization/v1beta1
- kubernetes/typed/autoscaling/v1
- kubernetes/typed/autoscaling/v2beta1
- kubernetes/typed/autoscaling/v2beta2
- kubernetes/typed/batch/v1
- kubernetes/typed/batch/v1beta1
- kubernetes/typed/batch/v2alpha1
- kubernetes/typed/certificates/v1beta1
- kubernetes/typed/coordination/v1
- kubernetes/typed/coordination/v1beta1
- kubernetes/typed/core/v1
- kubernetes/typed/discovery/v1alpha1
- kubernetes/typed/events/v1beta1
- kubernetes/typed/extensions/v1beta1
- kubernetes/typed/networking/v1
- kubernetes/typed/networking/v1beta1
- kubernetes/typed/node/v1alpha1
- kubernetes/typed/node/v1beta1
- kubernetes/typed/policy/v1beta1
- kubernetes/typed/rbac/v1
- kubernetes/typed/rbac/v1alpha1
- kubernetes/typed/rbac/v1beta1
- kubernetes/typed/scheduling/v1
- kubernetes/typed/scheduling/v1alpha1
- kubernetes/typed/scheduling/v1beta1
- kubernetes/typed/settings/v1alpha1
- kubernetes/typed/storage/v1
- kubernetes/typed/storage/v1alpha1
- kubernetes/typed/storage/v1beta1
- listers/admissionregistration/v1
- listers/admissionregistration/v1beta1
- listers/apps/v1
- listers/apps/v1beta1
- listers/apps/v1beta2
- listers/auditregistration/v1alpha1
- listers/autoscaling/v1
- listers/autoscaling/v2beta1
- listers/autoscaling/v2beta2
- listers/batch/v1
- listers/batch/v1beta1
- listers/batch/v2alpha1
- listers/certificates/v1beta1
- listers/coordination/v1
- listers/coordination/v1beta1
- listers/core/v1
- listers/discovery/v1alpha1
- listers/events/v1beta1
- listers/extensions/v1beta1
- listers/networking/v1
- listers/networking/v1beta1
- listers/node/v1alpha1
- listers/node/v1beta1
- listers/policy/v1beta1
- listers/rbac/v1
- listers/rbac/v1alpha1
- listers/rbac/v1beta1
- listers/scheduling/v1
- listers/scheduling/v1alpha1
- listers/scheduling/v1beta1
- listers/settings/v1alpha1
- listers/storage/v1
- listers/storage/v1alpha1
- listers/storage/v1beta1
- pkg/apis/clientauthentication
- pkg/apis/clientauthentication/v1alpha1
- pkg/apis/clientauthentication/v1beta1
- pkg/version
- plugin/pkg/client/auth/exec
- rest
- rest/watch
- restmapper
- scale
- scale/scheme
- scale/scheme/appsint
- scale/scheme/appsv1beta1
- scale/scheme/appsv1beta2
- scale/scheme/autoscalingv1
- scale/scheme/extensionsint
- scale/scheme/extensionsv1beta1
- third_party/forked/golang/template
- tools/auth
- tools/cache
- tools/clientcmd
- tools/clientcmd/api
- tools/clientcmd/api/latest
- tools/clientcmd/api/v1
- tools/leaderelection
- tools/leaderelection/resourcelock
- tools/metrics
- tools/pager
- tools/record
- tools/record/util
- tools/reference
- tools/remotecommand
- transport
- transport/spdy
- util/cert
- util/connrotation
- util/exec
- util/flowcontrol
- util/homedir
- util/jsonpath
- util/keyutil
- util/retry
- util/testing
- name: k8s.io/cloud-provider
version: a9c1f33e9fb973aced01c110c71f09cd9007f949
- name: k8s.io/cluster-bootstrap
version: da9fdfce26bbeb478b99af3ccda35c5c4d53bd6d
- name: k8s.io/code-generator
version: cd179ad6a2693011d6f2fa5cd64c6680ee99379f
- name: k8s.io/component-base
version: 547f6c5d70902c6683e93ad96f84adc6b943aedf
subpackages:
- cli/flag
- config
- config/v1alpha1
- featuregate
- logs
- metrics
- metrics/legacyregistry
- version
- name: k8s.io/cri-api
version: 24ae4d4e8b036b885ee1f4930ec2b173eabb28e7
subpackages:
- pkg/apis
- pkg/apis/runtime/v1alpha2
- name: k8s.io/csi-api
version: 94ac839bf26cd8861226396b93ddf920cbb7ccc9
- name: k8s.io/csi-translation-lib
version: db86a8c7bb213e06fe7937e065916b81420aaa28
- name: k8s.io/gengo
version: 26a664648505d962332bda642b27306bc10d1082
- name: k8s.io/klog
version: 3ca30a56d8a775276f9cdae009ba326fdc05af7f
- name: k8s.io/kube-aggregator
version: 8c8f079fddc3d37cba5ac273f52d52d692994394
- name: k8s.io/kube-controller-manager
version: 7a93a0ddadd81206441dd993811f0781812f9efb
- name: k8s.io/kube-openapi
version: 743ec37842bffe49dd4221d9026f30fb1d5adbc4
subpackages:
- pkg/builder
- pkg/common
- pkg/handler
- pkg/schemaconv
- pkg/util
- pkg/util/proto
- pkg/util/proto/validation
- name: k8s.io/kube-proxy
version: de037b596c1ec62a89779f6aeead31b40d1159dd
subpackages:
- config/v1alpha1
- name: k8s.io/kube-scheduler
version: 3b5c1246eb18ad32e02b86892e9f8394bbd2e878
- name: k8s.io/kubectl
version: 21692a0861df75866d6f64e109f433fb4be7fef5
subpackages:
- pkg/cmd/util
- pkg/scheme
- pkg/util/interrupt
- pkg/util/openapi
- pkg/util/openapi/validation
- pkg/util/templates
- pkg/util/term
- pkg/validation
- pkg/version
- name: k8s.io/kubelet
version: 250a1838aa2c492c9096ff86558515b8639d7e87
- name: k8s.io/kubernetes
version: 7eb200efda2038f14864122d98179648357e026b
repo: https://github.com/openshift/kubernetes.git
subpackages:
- cmd/kube-proxy/app
- pkg/api/legacyscheme
- pkg/api/service
- pkg/api/v1/pod
- pkg/api/v1/service
- pkg/apis/apps
- pkg/apis/autoscaling
- pkg/apis/core
- pkg/apis/core/helper
- pkg/apis/core/pods
- pkg/apis/core/v1
- pkg/apis/core/v1/helper
- pkg/apis/core/v1/helper/qos
- pkg/apis/core/validation
- pkg/apis/scheduling
- pkg/capabilities
- pkg/client/metrics/prometheus
- pkg/features
- pkg/fieldpath
- pkg/kubelet/cm/util
- pkg/kubelet/container
- pkg/kubelet/qos
- pkg/kubelet/remote
- pkg/kubelet/types
- pkg/kubelet/util
- pkg/kubelet/util/format
- pkg/kubelet/util/logreduction
- pkg/master/ports
- pkg/proxy
- pkg/proxy/apis
- pkg/proxy/apis/config
- pkg/proxy/apis/config/scheme
- pkg/proxy/apis/config/v1alpha1
- pkg/proxy/apis/config/validation
- pkg/proxy/config
- pkg/proxy/healthcheck
- pkg/proxy/iptables
- pkg/proxy/ipvs
- pkg/proxy/metrics
- pkg/proxy/userspace
- pkg/proxy/util
- pkg/proxy/winkernel
- pkg/proxy/winuserspace
- pkg/registry/core/service/allocator
- pkg/security/apparmor
- pkg/util/async
- pkg/util/bandwidth
- pkg/util/configz
- pkg/util/conntrack
- pkg/util/dbus
- pkg/util/filesystem
- pkg/util/flag
- pkg/util/hash
- pkg/util/interrupt
- pkg/util/ipconfig
- pkg/util/ipset
- pkg/util/iptables
- pkg/util/ipvs
- pkg/util/mount
- pkg/util/netsh
- pkg/util/node
- pkg/util/oom
- pkg/util/parsers
- pkg/util/slice
- pkg/util/sysctl
- pkg/util/taints
- pkg/version
- pkg/version/verflag
- pkg/volume
- pkg/volume/util/fs
- pkg/volume/util/fsquota
- pkg/volume/util/fsquota/common
- pkg/volume/util/hostutil
- pkg/volume/util/recyclerclient
- pkg/volume/util/subpath
- pkg/windows/service
- third_party/forked/golang/expansion
- name: k8s.io/metrics
version: 227c654b25461c9b14f0436790aba3b2903e3416
- name: k8s.io/sample-apiserver
version: d4c9c65c82af2052254e649de7434cc9fd2ec0da
- name: k8s.io/sample-cli-plugin
version: e45c26d066f2965979c172db362a1d04b70b5f6c
- name: k8s.io/sample-controller
version: 92eb3cb7496cb222a72e5411bc8e3c3f782e7717
- name: k8s.io/utils
version: 581e00157fb1a0435d4fac54a52d1ca1e481d60e
subpackages:
- buffer
- exec
- exec/testing
- integer
- io
- keymutex
- net
- nsenter
- path
- pointer
- trace
- name: sigs.k8s.io/kustomize
version: a6f65144121d1955266b0cd836ce954c04122dc8
subpackages:
- pkg/commands/build
- pkg/constants
- pkg/expansion
- pkg/factory
- pkg/fs
- pkg/git
- pkg/gvk
- pkg/ifc
- pkg/ifc/transformer
- pkg/image
- pkg/internal/error
- pkg/loader
- pkg/patch
- pkg/patch/transformer