-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.yaml
2364 lines (2364 loc) · 70.5 KB
/
index.yaml
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
apiVersion: v1
entries:
admission-controller:
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.287344952Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.23.2
description: Lacework admission controller using Lacework proxy scanner
digest: e33f8c70d49cd459a08db7a231572142a804b00a4e41d7d979124fa4addd5f42
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.23.2.tgz
version: 0.23.2
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.286143217Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.23.1
description: Lacework admission controller using Lacework proxy scanner
digest: 24f93515ec8243d9468b088b0d20f7701ed6991ec42e9863e6aa8f77c77a6630
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.23.1.tgz
version: 0.23.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.284927412Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.23.0
description: Lacework admission controller using Lacework proxy scanner
digest: c8f64dca973a767dbaf80f95b88629f21245d1549a719da42862bd3f0dcf3f1c
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.23.0.tgz
version: 0.23.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.283672605Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.21.1
description: Lacework admission controller using Lacework proxy scanner
digest: 5bdf76a9c698868944668cda4a2d6be1fea8be5edbe996d176e06ff94e583028
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.21.1.tgz
version: 0.21.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.282425858Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.21.0
description: Lacework admission controller using Lacework proxy scanner
digest: 07d770050b9748bc0efdb62510cd1e9b37d0ab7ba92c4c32d8660482d8325281
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.21.0.tgz
version: 0.21.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.280212134Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.20.1
description: Lacework admission controller using Lacework proxy scanner
digest: 77f9f695cc475867db99c4490f9b5c91a6d372434db8647f6d8de0be0c9edfa8
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.20.1.tgz
version: 0.20.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.278885015Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.20.0
description: Lacework admission controller using Lacework proxy scanner
digest: 08c2df71bc4269d40f42c97b3dad48320fda17871cd48ba9cadb99a9a6b1deb9
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.20.0.tgz
version: 0.20.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.27767227Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.19.0
description: Lacework admission controller using Lacework proxy scanner
digest: 6c4cadac91866508370f07b0938f496cfec4961443bad76f459632d3c23733bc
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.19.0.tgz
version: 0.19.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.27633259Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.18.1
description: Lacework admission controller using Lacework proxy scanner
digest: 1e65d5a9931f67a09b86e1e363e9de5db9608d758f12de5b5d273dc8ceafdf96
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.18.1.tgz
version: 0.18.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.274746204Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.18.0
description: Lacework admission controller using Lacework proxy scanner
digest: b9293bd60bde77b717c4b746fb07ebd1f8fb51c8cf7d84f3a46cacf4269d5272
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.18.0.tgz
version: 0.18.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.272612582Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.17.0
description: Lacework admission controller using Lacework proxy scanner
digest: ccc9f683d8356eb429e7e417fbf248c09e647961974dd4a6ec13e16e1e596be5
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.17.0.tgz
version: 0.17.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.271234791Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.16.0
description: Lacework admission controller using Lacework proxy scanner
digest: e48e63e4879848bb628b9d4189422f9b716a36ccf1e66dfa3a1681b163b3a572
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.16.0.tgz
version: 0.16.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.269434558Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.15.1
description: Lacework admission controller using Lacework proxy scanner
digest: bf699100ed723e95d77d25ad173e364ffa684299e661193bc55c5326399f16c2
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.15.1.tgz
version: 0.15.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.268293885Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.15.0
description: Lacework admission controller using Lacework proxy scanner
digest: 7deaa06be848b4ae6f850a3bb55a8ce68becfcf8aaf37829162e1a6da1efe289
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.15.0.tgz
version: 0.15.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.267073059Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.14.2
description: Lacework admission controller using Lacework proxy scanner
digest: 1cd740b154ef0060c939b792af7c24a13f633bd68b0aad5f43766c1b5b5070a3
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.14.2.tgz
version: 0.14.2
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.26540725Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.14.1
description: Lacework admission controller using Lacework proxy scanner
digest: f6fef68b00f1c7a1d8782b681cb135316492c4b77b8f16429bdd224d72b6de7f
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.14.1.tgz
version: 0.14.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.264245986Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.14.0
description: Lacework admission controller using Lacework proxy scanner
digest: 854249d4092a75774facefc1cd3110fd00bc6feb57c996b103084dca32595ff9
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.14.0.tgz
version: 0.14.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.262426953Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.13.0
description: Lacework admission controller using Lacework proxy scanner
digest: 0a99e66310d5389204c19ec05ecf93b71a3b405586597e050ee273c2f27374e2
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.13.0.tgz
version: 0.13.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.260540128Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.12.1
description: Lacework admission controller using Lacework proxy scanner
digest: 3c5a535a408dc82dbf931a40358ccebcf7ef5cb35c8588e143e28e826657aaa5
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.259269791Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.12.0
description: Lacework admission controller using Lacework proxy scanner
digest: 04f4f113121baf27d7111b1a70648396dc5baecc4f4db35b9577811d3d910686
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.12.0.tgz
version: 0.12.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.258194Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.11.4
description: Lacework admission controller using Lacework proxy scanner
digest: bbc064d4bf0d9e2dc14bc5a5961c33cbee3359224a289713a3a65bab6462c8af
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.11.4.tgz
version: 0.11.4
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.255551812Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.11.3
description: Lacework admission controller using Lacework proxy scanner
digest: 8d629b1edef39c0c1e59b3efe3a25b7e62dd7ebbc79b58a1f100e692573aa6fc
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.11.3.tgz
version: 0.11.3
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.254350427Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.11.2
description: Lacework admission controller using Lacework proxy scanner
digest: 2ab9bbc1d6564e2066200c11e02b0216bdc8565b80a8e2b7da7c82ba110e91c1
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.11.2.tgz
version: 0.11.2
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.252520513Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.11.1
description: Lacework admission controller using Lacework proxy scanner
digest: b0cc981e9320e58b3ba7575c8a150bb43dec54b9ddc479973fc1e0b8e8cf7b55
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.11.1.tgz
version: 0.11.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.250536405Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.11.0
description: Lacework admission controller using Lacework proxy scanner
digest: a701f2be574284a2a73de46086940a28c17d2d550faf7c4861d6d099ebac5c57
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.23463212Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.10.0
description: Lacework admission controller using Lacework proxy scanner
digest: 760c38d1948149b9913ec9b839e7f5c57cdcfd95208790104600b47847db3a00
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.14.tgz
version: 0.1.14
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.232659952Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.10.0
description: Lacework admission controller using Lacework proxy scanner
digest: 456baf5611c7bc85bc1d76b08225281630b58bf970300d0294b389e522c7219b
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.13.tgz
version: 0.1.13
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.230649773Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.8.0
description: Lacework admission controller using Lacework proxy scanner
digest: e77bd71c8f04d6c8d7053c7361b8bc6c7c619bb7b73e21e9fb758d88aa2adbad
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.228710796Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.5.0
description: Lacework admission controller using Lacework proxy scanner
digest: 6aa810294e079715adb472e305b6b136dbdd39c130c6912be14ed9645312201b
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.226654656Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.4.0
description: Lacework admission controller using Lacework proxy scanner
digest: df2842e199515cc1cb73fe601f50441bbdaf47b8ba3b7adf0cf6f486c24eb579
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.249115263Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.3.1
description: Lacework admission controller using Lacework proxy scanner
digest: 45e2f581ce72c6e7d7ab51684fc994b91d976ced46485a73a8e36ed2a1c433e8
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.247494026Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.15
description: Lacework admission controller using Lacework proxy scanner
digest: 71a5ba9344257507472559a9bd0f595239d2b1fc51517c7ca3ee446406bc73fe
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.245367304Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.13
description: Lacework admission controller using Lacework proxy scanner
digest: b818356133bd72aef8c3bae0db5819bf179ad12c2f13727c088023dcbea3b9be
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.244021405Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.9
description: Lacework admission controller using Lacework proxy scanner
digest: 71bfc5b409da43706fceb4e1bcb5adaacacabfd0091d8312d05e22cf06e3d25b
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.242403667Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.8
description: Lacework admission controller using Lacework proxy scanner
digest: 50285571bd9ab3a679bec1098a74ba8b5adc680c371b09caaf773fbc291194a7
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.239883604Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.5
description: Lacework admission controller using Lacework proxy scanner
digest: 9c0bca6cf63b99070f22f8eff357a4e54ae8fd6a0bf8a9a82fbc24a0d7c381ab
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.238364479Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.2
description: Lacework admission controller using Lacework proxy scanner
digest: d4237d89cd765955f37599aa49fee0b3a7041b644de833ee28d5759a9483def5
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.236439043Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.2
description: Lacework admission controller using Lacework proxy scanner
digest: 74ea4088ecb266b6a234ca108079e0f067541886823756893d3a02d68fe3423a
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.224547484Z"
dependencies:
- condition: proxy-scanner.enabled
name: proxy-scanner
repository: https://lacework.github.io/helm-charts
version: 0.2.2
description: Lacework admission controller using Lacework proxy scanner
digest: c8d01b37286474bdcf0250fc50841ed65ac568332329efa4ec0fc798b1327069
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-23T22:56:46.222766452Z"
description: Lacework admission controller using Lacework proxy scanner
digest: d6d2a6042b051b02ee6eac547b528cb56c5d2ce772f79f962bfb01f41c8ccccd
keywords:
- admission-controller
- runtime-security
- lacework
maintainers:
- email: chitra.kumar@lacework.net
name: chitrapkumar
name: admission-controller
type: application
urls:
- admission-controller-0.1.0.tgz
version: 0.1.0
lacework-agent:
- apiVersion: v2
appVersion: "1.0"
created: "2024-10-23T22:56:46.353861709Z"
description: Lacework Agent
digest: 471b55b26304b51f6ea352d21df373c49c566ab843f4682a83e8acd60243a3e6
home: https://www.lacework.com
icon: https://www.lacework.com/wp-content/uploads/2019/07/Lacework_Logo_color_2019.svg
keywords:
- monitoring
- security
- run-time
- metric
- troubleshooting
kubeVersion: '> 1.9.0-0'
maintainers:
- email: info@lacework.net
name: lacework-support
name: lacework-agent
urls:
- lacework-agent-7.2.0.tgz
version: 7.2.0
- apiVersion: v2
appVersion: "1.0"
created: "2024-10-23T22:56:46.352957083Z"
description: Lacework Agent
digest: 60b80855566825401105e5391dc1f19d933c485a932c902107b234109615e578
home: https://www.lacework.com
icon: https://www.lacework.com/wp-content/uploads/2019/07/Lacework_Logo_color_2019.svg
keywords:
- monitoring
- security
- run-time
- metric
- troubleshooting
kubeVersion: '> 1.9.0-0'
maintainers:
- email: info@lacework.net
name: lacework-support
name: lacework-agent
urls:
- lacework-agent-7.1.4.tgz
version: 7.1.4
- apiVersion: v2
appVersion: "1.0"
created: "2024-10-23T22:56:46.352020756Z"
description: Lacework Agent
digest: ff503cc25142312e1875eba5472fe76dcb36ee96bec96e5afbc5d82688d8066e
home: https://www.lacework.com
icon: https://www.lacework.com/wp-content/uploads/2019/07/Lacework_Logo_color_2019.svg
keywords:
- monitoring
- security
- run-time
- metric
- troubleshooting
kubeVersion: '> 1.9.0-0'
maintainers:
- email: info@lacework.net
name: lacework-support
name: lacework-agent
urls:
- lacework-agent-7.1.2.tgz
version: 7.1.2
- apiVersion: v2
appVersion: "1.0"
created: "2024-10-23T22:56:46.351116489Z"
description: Lacework Agent
digest: 0b724d14856d6a9948daeec4cfc004990986b587e032ff3b0fe80c83ae2e0b77
home: https://www.lacework.com
icon: https://www.lacework.com/wp-content/uploads/2019/07/Lacework_Logo_color_2019.svg
keywords:
- monitoring
- security
- run-time
- metric
- troubleshooting
kubeVersion: '> 1.9.0-0'
maintainers:
- email: info@lacework.net
name: lacework-support
name: lacework-agent
urls:
- lacework-agent-7.1.0.tgz
version: 7.1.0
- apiVersion: v2
appVersion: "1.0"
created: "2024-10-23T22:56:46.349664037Z"
description: Lacework Agent
digest: 2def8490296ac7ad42b548ed1ab965271a4d07610148d834fa82ab340a4738b0
home: https://www.lacework.com
icon: https://www.lacework.com/wp-content/uploads/2019/07/Lacework_Logo_color_2019.svg
keywords:
- monitoring
- security
- run-time
- metric
- troubleshooting
kubeVersion: '> 1.9.0-0'
maintainers:
- email: info@lacework.net
name: lacework-support
name: lacework-agent
urls:
- lacework-agent-7.0.0.tgz
version: 7.0.0
- apiVersion: v2
appVersion: "1.0"
created: "2024-10-23T22:56:46.325692925Z"
description: Lacework Agent
digest: f88bdc7358e4413aac95df1df094ce7d677bce0c7275fc31fd9481bcc70e7b96
home: https://www.lacework.com
icon: https://www.lacework.com/wp-content/uploads/2019/07/Lacework_Logo_color_2019.svg
keywords:
- monitoring
- security
- run-time
- metric
- troubleshooting
kubeVersion: '> 1.9.0-0'
maintainers:
- email: info@lacework.net