-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
index.yaml
1535 lines (1535 loc) · 62.3 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:
pihole:
- apiVersion: v1
appVersion: "2023.01"
created: "2023-10-26T14:28:46.992034213Z"
description: Installs pihole in kubernetes
digest: ab6d6b143ffb9c240d2f7c6123561ab4f16e609f6ff7a2f919c47dfc68b7b1f6
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://upload.wikimedia.org/wikipedia/commons/0/00/Pi-hole_Logo.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes-githubactions/releases/download/pihole-2.24.0/pihole-2.24.0.tgz
version: 2.24.0
- apiVersion: v1
appVersion: "2023.01"
created: "2023-10-26T14:28:46.782037992Z"
description: Installs pihole in kubernetes
digest: a1dae7d3dcd01603e8881eaa9c21d72e0aa0f5526d7d1f22e1d0cb0a68e809e5
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes-githubactions/releases/download/pihole-2.23.1/pihole-2.23.1.tgz
version: 2.23.1
- apiVersion: v1
appVersion: "2023.01"
created: "2023-10-26T14:28:46.533391854Z"
description: Installs pihole in kubernetes
digest: 1e64abc15a92dd05f5298759fd86b8831e2d634de344c38925a0e74fe2b0ea5b
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes-githubactions/releases/download/pihole-2.18.0/pihole-2.18.0.tgz
version: 2.18.0
- apiVersion: v1
appVersion: "2023.01"
created: "2023-04-28T13:55:51.070435994Z"
description: Installs pihole in kubernetes
digest: d631cbeb91ffea81a3b727ac095b6106ba1b77e5e569d1aef1aab70c17ddaa2c
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes-githubactions/releases/download/pihole-2.16.0/pihole-2.16.0.tgz
version: 2.16.0
- apiVersion: v1
appVersion: "2023.01"
created: "2023-04-27T08:01:00.120661645Z"
description: Installs pihole in kubernetes
digest: ecb8668e7b473637930301dc08d2de9c6b7a7ed581f9d592bd49c98c51e04a80
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.14.0/pihole-2.14.0.tgz
version: 2.14.0
- apiVersion: v1
appVersion: "2023.01"
created: "2023-04-26T12:25:29.219726019Z"
description: Installs pihole in kubernetes
digest: b9bcb33f81e99ad4d48d4c93892000345acb3ee68652b149fcc06f9089a1f6c1
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.13.0/pihole-2.13.0.tgz
version: 2.13.0
- apiVersion: v1
appVersion: "2023.01"
created: "2023-03-06T10:34:16.951951147Z"
description: Installs pihole in kubernetes
digest: 781b7727d47b89009691da3c5b97f8eaa7d02107ecd8127554418c67b3e192a6
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.12.0/pihole-2.12.0.tgz
version: 2.12.0
- apiVersion: v1
appVersion: "2023.01"
created: "2023-01-18T11:17:40.984696293Z"
description: Installs pihole in kubernetes
digest: f40787d598fd80bfb874564e640f29371e5377a11df82f22162b014eed9015bf
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.11.1/pihole-2.11.1.tgz
version: 2.11.1
- apiVersion: v1
appVersion: 2022.11.2
created: "2022-12-01T18:41:42.637823117Z"
description: Installs pihole in kubernetes
digest: f267e65f66288d2f117d82a21e5c69ac9b02b2596679ce0a0d3800a0f664dd8e
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.11.0/pihole-2.11.0.tgz
version: 2.11.0
- apiVersion: v1
appVersion: "2022.11"
created: "2022-11-23T07:27:13.31825924Z"
description: Installs pihole in kubernetes
digest: ddcbf9686681220107547bf42a45b9df771404653cb550a275f9b2b22c108a36
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.10.0/pihole-2.10.0.tgz
version: 2.10.0
- apiVersion: v1
appVersion: "2022.11"
created: "2022-11-15T06:51:14.523203629Z"
description: Installs pihole in kubernetes
digest: 8e1e6406dd443a1d82c8b28cae172fda445f4e9dd5e6f532e7048d6dd7e87513
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.9.4/pihole-2.9.4.tgz
version: 2.9.4
- apiVersion: v1
appVersion: 2022.09.1
created: "2022-09-04T19:03:21.077975473Z"
description: Installs pihole in kubernetes
digest: faafaeb9ec6e14a1482655d7b2e52dd00e93ae2cb9a7eab1b07bd83eea563084
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.9.3/pihole-2.9.3.tgz
version: 2.9.3
- apiVersion: v1
appVersion: "2022.08"
created: "2022-08-22T18:57:11.71235906Z"
description: Installs pihole in kubernetes
digest: 4a146da4231666d302310dde3b5b3bae59f590dd7d68810aa59bf88c77ca1fe9
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.9.2/pihole-2.9.2.tgz
version: 2.9.2
- apiVersion: v1
appVersion: 2022.07.1
created: "2022-08-08T07:23:58.927941808Z"
description: Installs pihole in kubernetes
digest: a6380afffc58e05d2c30455ab3a26fe3fcb4d2f807665c40ad8391361e666034
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.9.1/pihole-2.9.1.tgz
version: 2.9.1
- apiVersion: v1
appVersion: "2022.05"
created: "2022-06-22T13:59:41.073270551Z"
description: Installs pihole in kubernetes
digest: 21779fd444b723220d48d513ad19aee00eb253e74560bfee9cfb24f2c885df80
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.9.0/pihole-2.9.0.tgz
version: 2.9.0
- apiVersion: v1
appVersion: 2022.02.1
created: "2022-06-22T13:50:40.73245742Z"
description: Installs pihole in kubernetes
digest: 786fad1a4edca34b9e1e2e6e332e50342277fd89d34bb469a764f027f6ea88bc
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.8.0/pihole-2.8.0.tgz
version: 2.8.0
- apiVersion: v1
appVersion: 2022.02.1
created: "2022-06-22T13:30:02.158423994Z"
description: Installs pihole in kubernetes
digest: 71206a2d56baa458eb8cd3f0650e5776d5948ce625e0d3b96dbc1ef24e70bed1
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.7.0/pihole-2.7.0.tgz
version: 2.7.0
- apiVersion: v1
appVersion: 2022.02.1
created: "2022-06-20T19:16:50.877956984Z"
description: Installs pihole in kubernetes
digest: 7d62c5e47414ece4ba0689d67d6392b7c100330754f9e958c0abade1fa017a9a
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.6.0/pihole-2.6.0.tgz
version: 2.6.0
- apiVersion: v1
appVersion: 2022.02.1
created: "2022-02-28T12:02:43.756892596Z"
description: Installs pihole in kubernetes
digest: 6a70633eb2635b350eb10be9aa3f5e21bc66bb75f8cbe330bea90d40fd753b67
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.8/pihole-2.5.8.tgz
version: 2.5.8
- apiVersion: v1
appVersion: 2022.02.1
created: "2022-02-24T12:38:43.908760581Z"
description: Installs pihole in kubernetes
digest: 73f33c0787c2da9c0ad2ecb7ac80d2fba60de231594f7d24437d5de01fe2edb1
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.7/pihole-2.5.7.tgz
version: 2.5.7
- apiVersion: v1
appVersion: 2022.01.1
created: "2022-02-09T07:58:38.228172366Z"
description: Installs pihole in kubernetes
digest: 69638b5d630cd307243dc69b8019f75dcc8c4071a5a97cfeae5c04a751db79ae
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.6/pihole-2.5.6.tgz
version: 2.5.6
- apiVersion: v1
appVersion: 2022.01.1
created: "2022-02-08T08:14:03.072871663Z"
description: Installs pihole in kubernetes
digest: 18a36c055a8720b7ea91e474216595454dec6e7cdb3e5e8f84e3d3374404aac2
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.5/pihole-2.5.5.tgz
version: 2.5.5
- apiVersion: v1
appVersion: 2021.10.1
created: "2022-01-13T12:34:55.095352294Z"
description: Installs pihole in kubernetes
digest: 6650f97f55cf8a352414b11b61177a43cfb847a3283c2227f6a3a7893312c1ca
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.4/pihole-2.5.4.tgz
version: 2.5.4
- apiVersion: v1
appVersion: 2021.10.1
created: "2021-11-18T10:12:57.198131444Z"
description: Installs pihole in kubernetes
digest: 0fef421b2f7555bca521d6fe5c804bfd79ec304871cd93bde861169e579d13b2
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.3/pihole-2.5.3.tgz
version: 2.5.3
- apiVersion: v1
created: "2021-11-01T10:07:36.968213693Z"
description: Installs pihole in kubernetes
digest: 742175d640acce5cf9d57c25a680bc21b7ef7eae0fe8dcba8c08fe8ebebda332
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.2/pihole-2.5.2.tgz
version: 2.5.2
- apiVersion: v1
created: "2021-10-26T07:02:43.884214948Z"
description: Installs pihole in kubernetes
digest: 48aaafe4674d823e3eba1cd356fa7d80cf405af67dbe992405689ebb7ff731d3
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.1/pihole-2.5.1.tgz
version: 2.5.1
- apiVersion: v1
created: "2021-10-09T16:53:39.100924079Z"
description: Installs pihole in kubernetes
digest: 57c22f1bf55882afd8c3933a38cc96c13b919a6bbc7e5c0e41cd0052dd2688d0
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.5.0/pihole-2.5.0.tgz
version: 2.5.0
- apiVersion: v1
created: "2021-10-01T05:06:00.6775344Z"
description: Installs pihole in kubernetes
digest: d3f381acf59fe1af95f6c548b0c4113eb7fcd365cb080e8cde35775ca1dd1073
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.4.2/pihole-2.4.2.tgz
version: 2.4.2
- apiVersion: v1
created: "2021-09-24T16:14:46.087019879Z"
description: Installs pihole in kubernetes
digest: fa87a1da16601f88ff3eabfb9c85e3bd740e528f334f33984dfedc5bb6dac6ad
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.4.1/pihole-2.4.1.tgz
version: 2.4.1
- apiVersion: v1
created: "2021-09-16T06:17:10.828546898Z"
description: Installs pihole in kubernetes
digest: cccc2edeae9b79c8dae62f3baa1b8c707502de81342a3b7aa0504ca8fae7eae4
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.4.0/pihole-2.4.0.tgz
version: 2.4.0
- apiVersion: v1
created: "2021-09-16T06:09:28.206710183Z"
description: Installs pihole in kubernetes
digest: 803bbab9249944088f91129a319b644791b1340e8941b80cae877d3d1c0ef463
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.3.0/pihole-2.3.0.tgz
version: 2.3.0
- apiVersion: v1
created: "2021-09-06T06:12:29.68054392Z"
description: Installs pihole in kubernetes
digest: dd950b41ebf8fc54128b21282c7dfb835ce50bb335043d9e36e6570aa96546b7
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.2.1/pihole-2.2.1.tgz
version: 2.2.1
- apiVersion: v1
created: "2021-09-05T16:29:59.094551245Z"
description: Installs pihole in kubernetes
digest: da2e20cc613ca8cbb5c0027468b7bf84f1967c05268f031540307fe74974e77a
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.2.0/pihole-2.2.0.tgz
version: 2.2.0
- apiVersion: v1
created: "2021-08-19T12:47:15.612641883Z"
description: Installs pihole in kubernetes
digest: f02b0e966cd8b8799b5eb5be2da2a731340ecaabe6396f9f05f4264f36b9009f
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.1.2/pihole-2.1.2.tgz
version: 2.1.2
- apiVersion: v1
created: "2021-08-17T07:47:14.451732229Z"
description: Installs pihole in kubernetes
digest: e0601cf4905190ded121699c17b5570e7dd8d3a6e00634f266a61573229f8793
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.1.1/pihole-2.1.1.tgz
version: 2.1.1
- apiVersion: v1
created: "2021-08-16T12:30:57.193284134Z"
description: Installs pihole in kubernetes
digest: 124d5bf485e459db1feb2b347a9e6f0f8caa16e777b8af05615780a723ee28a2
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.1.0/pihole-2.1.0.tgz
version: 2.1.0
- apiVersion: v1
created: "2021-08-05T13:17:48.612632312Z"
description: Installs pihole in kubernetes
digest: b22c075471abf5a974f792f848a865e060bf18924549ce0ecb1d94d4261023d6
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.0.1/pihole-2.0.1.tgz
version: 2.0.1
- apiVersion: v1
created: "2021-06-21T10:50:38.383323614Z"
description: Installs pihole in kubernetes
digest: 9278e2c06e082da46fa345f53ee1c6458a43d6e427635055e5bff2fd77217087
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-2.0.0/pihole-2.0.0.tgz
version: 2.0.0
- apiVersion: v1
created: "2021-06-21T07:53:27.82126579Z"
description: Installs pihole in kubernetes
digest: ab543f7ce676b7be1c6ed11296e9e6ebe5a5b8be0905d063c40da5de7f34b9c2
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.10.0/pihole-1.10.0.tgz
version: 1.10.0
- apiVersion: v1
created: "2021-06-21T06:58:50.92795354Z"
description: Installs pihole in kubernetes
digest: 02cc84832d4a7b4e02b585ad081e9119db974a882065573cde2101e208d2259f
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.9.2/pihole-1.9.2.tgz
version: 1.9.2
- apiVersion: v1
created: "2021-05-31T06:12:31.326621271Z"
description: Installs pihole in kubernetes
digest: c77946a1632db3af633eb10b7fca6806209bd8a0d6e6bb4a5fa69055347b17fd
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.9.1/pihole-1.9.1.tgz
version: 1.9.1
- apiVersion: v1
appVersion: 5.2.4
created: "2021-05-27T11:23:16.284703729Z"
description: Installs pihole in kubernetes
digest: 3a8ab1b8d0ca7cb5a177027ad0c61e29b63a2788e5f99cd73f918f2c71d61b44
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.9.0/pihole-1.9.0.tgz
version: 1.9.0
- apiVersion: v1
appVersion: 5.2.4
created: "2021-04-08T19:21:30.520099458Z"
description: Installs pihole in kubernetes
digest: a565aa73e1ea1015bc265e3f8172178e9dc19dc924eedee5c0e2cea7949208e1
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.34/pihole-1.8.34.tgz
version: 1.8.34
- apiVersion: v1
appVersion: 5.2.4
created: "2021-03-30T07:44:16.815501858Z"
description: Installs pihole in kubernetes
digest: bb7bc81fa208df8c5ec982e5e9e67414d715f00ee92f111d0e440ffd7353b2b2
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.33/pihole-1.8.33.tgz
version: 1.8.33
- apiVersion: v1
appVersion: 5.2.4
created: "2021-03-29T19:27:17.135509202Z"
description: Installs pihole in kubernetes
digest: 190e91b6c8c45307337ae445a471f27376017e9c812d34d6b338ba4e9181faab
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.32/pihole-1.8.32.tgz
version: 1.8.32
- apiVersion: v1
appVersion: 5.2.4
created: "2021-03-11T08:05:40.273500564Z"
description: Installs pihole in kubernetes
digest: 04391df18b0521bdc9b2adc92ac7e432853df23efb96f1723d62f2346b77d6cb
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.30/pihole-1.8.30.tgz
version: 1.8.30
- apiVersion: v1
appVersion: 5.2.4
created: "2021-01-19T16:31:10.555918665Z"
description: Installs pihole in kubernetes
digest: be03d0d37eccddf14ac9c9cd71a28e5fd4840e1687a9f07b7262a182a01f6319
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.29/pihole-1.8.29.tgz
version: 1.8.29
- apiVersion: v1
appVersion: 5.2.3
created: "2021-01-18T10:00:27.999087976Z"
description: Installs pihole in kubernetes
digest: b314568cef1a8fee2992e86d25f46499705e0b7b780a41a883c4c1252f67c4b7
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.28/pihole-1.8.28.tgz
version: 1.8.28
- apiVersion: v1
appVersion: 5.2.1
created: "2021-01-17T18:23:48.144113808Z"
description: Installs pihole in kubernetes
digest: 1b6ac0354e2a5ddd7514754f3ab7cbd7006e7704ba4ef15d675b53bb8113e5d9
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.27/pihole-1.8.27.tgz
version: 1.8.27
- apiVersion: v1
appVersion: 5.2.1
created: "2021-01-13T10:12:03.326421321Z"
description: Installs pihole in kubernetes
digest: 45aeb72d002eae3261476d8447a281990d678d7b9ea4086543179bcdd8a53554
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.26/pihole-1.8.26.tgz
version: 1.8.26
- apiVersion: v1
appVersion: 5.2.1
created: "2021-01-12T07:47:05.107481706Z"
description: Installs pihole in kubernetes
digest: 5cbe4ed2693c2b7b60c3b9f74a86c1d83b56895da749f8b9981ada00c09de437
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.25/pihole-1.8.25.tgz
version: 1.8.25
- apiVersion: v1
appVersion: 5.2.1
created: "2021-01-12T07:23:40.533060721Z"
description: Installs pihole in kubernetes
digest: 2565bcb13d3a0fbdfa839ee77ec978a1290120ddcb7d397a777bc83a570b659b
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.24/pihole-1.8.24.tgz
version: 1.8.24
- apiVersion: v1
appVersion: 5.2.1
created: "2020-12-16T11:10:37.961159834Z"
description: Installs pihole in kubernetes
digest: 178b282a7ac890fca4c75e34da3b7f7fb82c8e0d52921339db55b91f7a8f7096
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png
maintainers:
- email: [email protected]
name: MoJo2600
name: pihole
sources:
- https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
- https://pi-hole.net/
- https://github.com/pi-hole
- https://github.com/pi-hole/docker-pi-hole
urls:
- https://github.com/MoJo2600/pihole-kubernetes/releases/download/pihole-1.8.23/pihole-1.8.23.tgz
version: 1.8.23
- apiVersion: v1
appVersion: "5.2"
created: "2020-12-16T08:03:48.484733932Z"
description: Installs pihole in kubernetes
digest: 54e7f3bcff41d2b391c647e43826182acf517048249c7a4a37e987209f0f3f68
home: https://github.com/MoJo2600/pihole-kubernetes/tree/master/charts/pihole
icon: https://i2.wp.com/pi-hole.net/wp-content/uploads/2016/12/Vortex-R.png