-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.html
923 lines (747 loc) · 45.7 KB
/
index.html
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
<!doctype html>
<html itemscope itemtype="http://schema.org/WebPage" lang="en" class="no-js">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="generator" content="Hugo 0.101.0" />
<link rel="alternate" type="application/rss+xml" href="https://jenkins-x.io/index.xml">
<meta name="robots" content="index, follow" />
<link rel="shortcut icon" href="/favicons/favicon.ico" >
<link rel="apple-touch-icon" href="/favicons/apple-touch-icon-180x180.png" sizes="180x180">
<link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicons/android-36x36.png" sizes="36x36">
<link rel="icon" type="image/png" href="/favicons/android-48x48.png" sizes="48x48">
<link rel="icon" type="image/png" href="/favicons/android-72x72.png" sizes="72x72">
<link rel="icon" type="image/png" href="/favicons/android-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicons/android-144x144.png" sizes="144x144">
<link rel="icon" type="image/png" href="/favicons/android-192x192.png" sizes="192x192">
<title>Jenkins X - Cloud Native CI/CD Built On Kubernetes</title>
<meta name="description" content="Documentation, guides and support for Jenkins X">
<meta property="og:title" content="Jenkins X - Cloud Native CI/CD Built On Kubernetes" />
<meta property="og:description" content="Documentation, guides and support for Jenkins X" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jenkins-x.io/" /><meta property="og:site_name" content="Jenkins X - Cloud Native CI/CD Built On Kubernetes" />
<meta itemprop="name" content="Jenkins X - Cloud Native CI/CD Built On Kubernetes">
<meta itemprop="description" content="Documentation, guides and support for Jenkins X"><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Jenkins X - Cloud Native CI/CD Built On Kubernetes"/>
<meta name="twitter:description" content="Documentation, guides and support for Jenkins X"/>
<link rel="preload" href="/scss/main.min.c0c270330944830d871daebdf33cc13e42c81be6b202a34a35372c9c0bc0a405.css" as="style">
<link href="/scss/main.min.c0c270330944830d871daebdf33cc13e42c81be6b202a34a35372c9c0bc0a405.css" rel="stylesheet" integrity="">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/styles/monokai.min.css">
<link rel="stylesheet" href='https://jenkins-x.io/css/style.css' />
<link rel="stylesheet" href='https://jenkins-x.io/css/prism.css' />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3" /><script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/prism.css"/>
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-4216293-7', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
</head>
<body class="td-home">
<header>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5BWMXGJ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<nav class="js-navbar-scroll navbar fixed-top navbar-expand-lg navbar-light bg-light flex-column flex-md-row td-navbar">
<a class="navbar-brand" href="/">
<span class="navbar-logo"><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 994.2 203.9" style="enable-background:new 0 0 994.2 203.9"><style>.st0{fill:#73c3d5}.st1{fill:#ef8949}.st2{fill:#ff7f40}.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#73c3d5}.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#ff7f40}</style><g><g><path class="st0" d="M387.3 62.1v58c0 11.8-9.6 21.3-21.4 21.3h-36.5c-11.8.0-21.4-9.5-21.4-21.3v-14.9h14.2v14.9c0 4 3.3 7.3 7.3 7.3H366c4 0 7.3-3.3 7.3-7.3v-58H387.3z"/><path class="st0" d="M412.9 83.6V91H464v14.2h-51.1v15c0 4 3.3 7.3 7.3 7.3h58v14.2h-58c-11.8.0-21.3-9.6-21.3-21.4V83.6c0-11.8 9.5-21.4 21.3-21.4h58v14.2h-58C416.1 76.3 412.9 79.6 412.9 83.6"/><polygon class="st0" points="568.9,62.2 568.9,141.7 554.7,130.8 503.6,91.4 503.6,141.7 489.5,141.7 489.5,62.5 503.6,73.3 554.7,112.7 554.7,62.1"/><polygon class="st0" points="624.9,94 659.3,141.5 641.8,141.5 614.4,103.6 594.3,121.9 594.3,141.5 580.1,141.5 580.1,62.1 594.3,62.1 594.3,102.7 606,92.1 616.5,82.4 638.7,62.1 659.7,62.1"/><rect x="671" y="62.1" class="st0" width="14.2" height="79.4"/><polygon class="st0" points="776,62.2 776,141.7 761.8,130.8 710.7,91.4 710.7,141.7 696.5,141.7 696.5,62.5 710.7,73.3 761.8,112.7 761.8,62.1"/><path class="st0" d="M848.2 84.1v-.5c0-4-3.3-7.3-7.3-7.3h-32.2c-4 0-7.3 3.3-7.3 7.3v.5c0 4 3.3 7.3 7.3 7.3h28.6c7.4.0 14 3.2 18.5 8.2.3.3.6.7.9 1 3.5 4.3 5.7 9.9 5.7 15.9.0 13.8-11.2 25.1-25.1 25.1h-24.8c-13.8.0-25.1-11.2-25.1-25.1h14.2c0 6 4.9 10.9 10.9 10.9h24.8c6 0 11-4.9 11-10.9s-5-10.9-11-10.9h-28.6c-5.8.0-11-2.3-14.9-6-1-1-1.9-2.2-2.7-3.4-2.4-3.4-3.7-7.6-3.7-12.1v-.5c0-11.8 9.5-21.4 21.3-21.4H841c11.8.0 21.4 9.6 21.4 21.4V84L848.2 84.1z"/><polygon class="st1" points="870.9,141.7 871.2,141.7 870.9,141.9"/><polygon class="st2" points="955.7,102 981.7,68.4 994.2,52.2 973.7,52.2 973.5,52.2 955.7,52.2 950.7,52.2 947.7,56.1 933.9,74 920.1,56.1 917.1,52.2 912.1,52.2 894.2,52.2 873.7,52.2 886.2,68.4 912.2,102.1 886.4,135.5 874,151.7 894.4,151.7 912.3,151.7 917.3,151.7 920.3,147.8 934,130.1 947.7,147.8 950.7,151.7 955.7,151.7 973.6,151.7 994.1,151.7 981.6,135.5"/><polygon class="st1" points="956.4,141.9 956.3,141.7 956.4,141.7"/></g><g><g><g><path class="st3" d="M98.2 83.9c8.7.0 15.7 7 15.7 15.7s-7 15.7-15.7 15.7-15.7-7-15.7-15.7C82.5 91 89.5 83.9 98.2 83.9"/><path class="st2" d="M98.2 76.2c6.5.0 12.3 2.6 16.6 6.9 4.2 4.2 6.9 10.1 6.9 16.6.0 6.5-2.6 12.3-6.9 16.6-4.2 4.2-10.1 6.8-16.6 6.8s-12.3-2.6-16.5-6.8-6.9-10.1-6.9-16.6 2.6-12.3 6.9-16.6C85.9 78.8 91.7 76.2 98.2 76.2m14.4 9c-3.7-3.7-8.8-6-14.4-6-5.6.0-10.7 2.3-14.4 6s-6 8.8-6 14.4c0 5.6 2.3 10.7 6 14.4s8.8 6 14.4 6c5.6.0 10.7-2.3 14.4-6s6-8.8 6-14.4-2.3-10.7-6-14.4"/></g><g><path class="st3" d="M186.8 83.9c8.7.0 15.7 7 15.7 15.7s-7 15.7-15.7 15.7-15.7-7-15.7-15.7C171.1 91 178.1 83.9 186.8 83.9"/><path class="st2" d="M186.8 76.2c6.5.0 12.3 2.6 16.5 6.9 4.2 4.2 6.9 10.1 6.9 16.6.0 6.5-2.6 12.3-6.9 16.6-4.2 4.2-10.1 6.8-16.5 6.8-6.5.0-12.3-2.6-16.6-6.8-4.2-4.2-6.9-10.1-6.9-16.6s2.6-12.3 6.9-16.6C174.5 78.8 180.3 76.2 186.8 76.2m14.4 9c-3.7-3.7-8.8-6-14.4-6s-10.7 2.3-14.4 6c-3.7 3.7-6 8.8-6 14.4.0 5.6 2.3 10.7 6 14.4s8.8 6 14.4 6 10.7-2.3 14.4-6c3.7-3.7 6-8.8 6-14.4S204.9 88.9 201.2 85.2"/></g></g><path class="st3" d="M284.7 11.5c-5.4 8.9-15.3 23.4-17.4 27.3l-1.4-16.6L238.6 51c-9.4-17.8-26.5-30.9-46.8-34.8C186.7 7.1 166 .5 144.8.0c-.8.0-1.6.0-2.3.0-.8.0-1.6.0-2.3.0-21.2.5-41.9 7-47 16.1-20.3 3.9-37.5 17-46.8 34.8L19.1 22.1l-1.4 16.6c-2.1-3.8-12-18.4-17.4-27.3-1.5 5.3 3.2 46.2 4.5 51.4 1.3 5.2 9.8 40.8 16.3 40.2.9-.4 2.7-7.5 4.9-14l15 28c7 28 29.9 50 58.5 55.6.3-2 .8-4.1 1.5-5.9-31.9-6.1-56.2-34.3-56.2-67.8v-17c0-28.9 20.4-53.2 47.5-59.3.1.2.1.4.2.6l16 43c2 5.4 5.4 10.1 11.8 10.1h22.3 22.3c6.4.0 9.8-4.7 11.8-10.1l16-43c.1-.2.1-.4.2-.6 27.1 6.1 47.5 30.5 47.5 59.3v16.9c0 33.6-24.3 61.8-56.2 67.8.8 1.8 1.2 3.9 1.5 5.9C214.1 166.9 237 145 244 117l15-27.8c2.2 6.4 3.9 13.6 4.9 14 6.5.6 15.1-35.1 16.3-40.2C281.5 57.6 286.2 16.7 284.7 11.5zM22.5 74.1l-2.7 17.6C11.9 69 7.8 51.8 4.5 27.4L21.2 58l3.1-23.1 19.3 22c-3.1 7.7-4.9 16.2-4.9 25v16.9c0 1 0 1.9.1 2.9L22.5 74.1zm164.3-53-16 43c-1.2 3.1-2.7 6.1-6.1 6.1h-22.2-22.2c-3.3.0-4.9-3-6.1-6.1l-16-43c-1.9-5.1 21.5-12 44.3-12.2C165.2 9.1 188.7 16 186.8 21.1zm78.4 70.6-2.7-17.6-16.3 27.5c0-1 .1-1.9.1-2.9V81.9c0-8.8-1.7-17.3-4.9-25l19.3-22 3.1 23.1 16.7-30.6C277.2 51.8 273.1 69 265.2 91.7z"/><path class="st0" d="M170.8 149.4h-28.3-28.3c-20.2.0-30.9-9.9-34.6-14.1l-3 2.5c4.2 4.7 16 15.5 37.6 15.5h28.3 28.3c21.6.0 33.4-10.7 37.6-15.5l-3-2.5C201.7 139.5 190.9 149.4 170.8 149.4z"/><path class="st4" d="M178.5 159.9c-3.3-1.7-6.9-1.6-10.3-.3-3.6 1.4-7.2 3.3-10.5 5.2-1.7.9-3.4 1.9-5 2.8-1.7-.9-3.6-1.5-5.6-1.5H138c-2 0-4 .5-5.6 1.5-1.7-1-3.4-1.9-5-2.8-3.4-1.9-6.9-3.8-10.5-5.2-3.4-1.3-7.1-1.4-10.3.3-7.6 3.9-8.8 14.9-8.1 22.4.6 7.6 3.6 19.6 12.4 21.3 1.5.3 3 .2 4.5-.2 5.7-1.5 12.1-4.7 17.9-8.3 1.5.7 3.1 1.1 4.9 1.1h9.1c1.7.0 3.4-.4 4.9-1.1 5.8 3.6 12.2 6.7 17.9 8.3 1.5.4 3 .5 4.5.2 8.8-1.7 11.8-13.8 12.4-21.3C187.3 174.8 186.2 163.8 178.5 159.9zm-64.9 37.8c-10.7 2.9-14.6-38.3 1-32.3 3.4 1.3 7.9 3.7 13.3 6.8-.9 1.6-1.4 3.5-1.4 5.5v.7c-2.6-.8-6-1.7-10.5-2.7 7.4 4.6 5.1 3.5 10.1 5.9-5.5 3.3-3 1.6-10.7 7.4 4.7-1.6 8.3-2.8 11-3.9.0 2.2.7 4.2 1.8 5.9C123.9 193.6 118.6 196.3 113.6 197.7zm57.8.0c-4.9-1.3-10.3-4-14.7-6.6 1-1.6 1.7-3.5 1.8-5.6 2.6 1 6 2.2 10.2 3.6-7.4-5.5-5.3-4.2-10.1-7.1v-.6c4.3-2.1 2.5-1.2 9.6-5.7-3.9.9-7.1 1.7-9.6 2.4v-.5c0-2-.5-3.9-1.4-5.5 5.4-3.1 9.9-5.5 13.3-6.8C186 159.3 182.1 200.5 171.4 197.7z"/></g></g></svg></span>
</a>
<a class="navbar-brand" href="https://cd.foundation/">
<span>
<svg width="36" height="18" xmlns="http://www.w3.org/2000/svg" role="img" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="-3.23 44.77 362.70 271.95">
<defs>
<linearGradient id="a" x1="359.765" x2="104.082" y1="134.295" y2="124.577"
gradientTransform="matrix(1 0 0 -1 0 439.068)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ed1c24"></stop>
<stop offset="1" stop-color="#f7941d"></stop>
</linearGradient>
<linearGradient id="b" x1="355.202" x2="99.519" y1="254.467" y2="244.749" xlink:href="#a"></linearGradient>
<linearGradient id="c" x1="183.903" x2="10.612" y1="227.598" y2="221.023" xlink:href="#a"></linearGradient>
<linearGradient id="d" x1="367.119" x2="157.995" y1="265.311" y2="257.091" xlink:href="#a"></linearGradient>
</defs>
<path fill="#c49a6c"
d="M231.52 309.278c2.483-.332 4.895-.77 7.255-1.329s4.649-1.206 6.991-1.957c13.494-4.58 25.187-12.952 36.374-24.593l-.14-.175c-14.944 15.486-30.693 25.344-50.48 28.054z">
</path>
<path fill="url(#a)" d="M224.232 309.96h.332c1.084 0 2.15-.14 3.216-.228a93.844 93.844 0 0 1-3.233.227z"></path>
<path fill="url(#b)" d="M284.692 187.187l-.122.192.122-.192z"></path>
<path fill="url(#c)"
d="M146.145 231.847a150.844 150.844 0 0 1-12.97 15.862c-7.582 7.889-15.507 13.563-24.652 16.667a47.832 47.832 0 0 1-4.738 1.326 56.959 56.959 0 0 1-4.916.9 38.32 38.32 0 0 1-1.682.214l-.912.083c-.723.059-1.445.118-2.18.154h-3.068a42.325 42.325 0 0 1-9.192-1.043 49.977 49.977 0 0 1-6.764-2.002 43.097 43.097 0 0 1-4.525-1.954c-1.493-.77-2.961-1.516-4.407-2.37a59.5 59.5 0 0 1-17.105-15.399 59.714 59.714 0 0 1-2.914-4.311 53.09 53.09 0 0 1-1.291-2.263 51.985 51.985 0 0 1-2.263-4.738 46.72 46.72 0 0 1 0-36.426 51.986 51.986 0 0 1 2.263-4.738 54.14 54.14 0 0 1 1.291-2.263 59.742 59.742 0 0 1 2.914-4.311 59.714 59.714 0 0 1 17.105-15.4 60.828 60.828 0 0 1 4.407-2.369q2.217-1 4.525-1.777a49.976 49.976 0 0 1 6.906-2.073 42.325 42.325 0 0 1 9.192-1.042h3.128c.722 0 1.445.094 2.155.154l1.043.106 1.019.119c1.8.237 3.553.557 5.271.96.853.2 1.694.426 2.523.663a51.186 51.186 0 0 1 11.846 5.176 59.645 59.645 0 0 1 4.395 2.89 74.485 74.485 0 0 1 8.386 7.108q2.038 1.99 4.063 4.193l.083-.13a159.395 159.395 0 0 1 11.064 13.942c5.437-8.576 13.658-21.464 16.584-25.74 1.185-1.718 2.37-3.46 3.66-5.212-13.54-16.513-29.827-30.23-51.587-36.082h-.154a89.397 89.397 0 0 0-3.187-.794l-.45-.107a92.565 92.565 0 0 0-3.151-.627l-.628-.119a80.578 80.578 0 0 0-3.743-.569h-.142a58.29 58.29 0 0 0-2.073-.236h-.391l-1.872-.166h-.568l-1.754-.119h-.675l-1.777-.07h-3.115c-46.447-.25-87.125 40.476-87.125 86.911s40.725 87.173 87.172 87.173h3.14l1.729-.071h.734l1.67-.095h.676l1.706-.154h.568l1.813-.213.414-.06 1.967-.272h.213a125.91 125.91 0 0 0 3.553-.628l.652-.142c.96-.201 1.907-.415 2.855-.64l.58-.142a86.66 86.66 0 0 0 3.009-.817l.237-.071c20.73-6.077 36.425-19.392 49.55-35.277-2.037-3.068-3.4-5.366-4.039-6.48z">
</path>
<path fill="url(#d)"
d="M318.05 51.733v94.66a85.514 85.514 0 0 0-52.595-18.729h-3.115l-1.777.072-.7.047-1.752.118h-.569l-1.871.166h-.391c-.7.071-1.386.142-2.073.237h-.154c-1.256.154-2.5.355-3.732.569l-.628.118c-1.066.19-2.108.403-3.15.628l-.45.107c-30.35 6.858-50.333 28.808-66.822 52.82-.7 1.018-1.35 2.049-2.038 3.068-2.25 3.423-5.46 8.422-8.635 13.397-4.17 6.527-8.292 13.03-9.939 15.66l20.624 32.137s21.997 40.465 61.68 51.482l.237.07c.995.297 2.002.558 3.009.818l.58.142c.936.237 1.896.439 2.855.64l.652.142c1.184.225 2.369.439 3.553.628h.214l1.966.273.415.059 1.812.213h.569l1.705.154h.676l1.67.095h.734l1.73.07h3.139c54.703 0 86.355-30.964 87.149-85.063V51.733zm-52.595 215.403h-3.068c-.734 0-1.457-.095-2.18-.154l-.912-.083c-.568-.06-1.125-.13-1.682-.213a49.077 49.077 0 0 1-9.571-2.275 49.612 49.612 0 0 1-6.634-2.83 55.792 55.792 0 0 1-6.254-3.768 63.068 63.068 0 0 1-3.009-2.215 82.399 82.399 0 0 1-8.683-7.925l-.095.119c-1.255-1.303-2.487-2.69-3.731-4.11-.154-.167-.296-.356-.45-.534-.628-.722-1.256-1.445-1.884-2.215s-1.125-1.398-1.682-2.097-.888-1.101-1.338-1.682a184.467 184.467 0 0 1-6.053-8.292c-.7-.995-1.398-2.025-2.109-3.056-.379-.569-.77-1.184-1.185-1.73-.675-1.018-1.362-2.013-2.049-3.056l-.355-.545c-1.185-1.812-2.37-3.684-3.649-5.603q2.95-4.608 5.817-8.86c1.907-2.831 3.79-5.556 5.662-8.138s3.72-5.046 5.591-7.38 3.72-4.525 5.603-6.586q2.026-2.203 4.063-4.194c1.374-1.338 2.748-2.594 4.158-3.778s2.807-2.287 4.252-3.329a57.594 57.594 0 0 1 7.748-4.62c.331-.166.663-.367 1.006-.533l.226-.118c1.41-.652 2.843-1.185 4.3-1.73l.485-.201c.273-.083.557-.142.83-.237a44.943 44.943 0 0 1 3.34-.948l1.374-.343a60.798 60.798 0 0 1 4.738-.841l1.019-.119 1.042-.106c.711 0 1.434-.119 2.156-.154h3.128a42.431 42.431 0 0 1 4.572.26 48.011 48.011 0 0 1 6.93 1.35c1.54.427 3.08.925 4.596 1.505a48.724 48.724 0 0 1 4.525 1.955c1.493.722 2.961 1.516 4.407 2.369s2.866 1.8 4.24 2.784 2.725 2.049 4.028 3.174a58.459 58.459 0 0 1 8.837 9.477 59.73 59.73 0 0 1 2.914 4.312 51.067 51.067 0 0 1 5.318 11.916 47.38 47.38 0 0 1 1.185 5.165 45.567 45.567 0 0 1 .71 8.09c.072 35.964-16.062 52.122-52.227 52.122z">
</path>
</svg>
</span>
</a>
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
<ul class="navbar-nav mt-2 mt-lg-0">
<li class="nav-item mr-4 mb-2 mb-lg-0">
<a class="nav-link" href="/docs/" ><span></span></a>
</li>
<li class="nav-item mr-4 mb-2 mb-lg-0">
<a class="nav-link" href="/v3/about/" ><span>About</span></a>
</li>
<li class="nav-item mr-4 mb-2 mb-lg-0">
<a class="nav-link" href="/community/" ><span>Community</span></a>
</li>
<li class="nav-item mr-4 mb-2 mb-lg-0">
<a class="nav-link" href="/blog/" ><span>Blog</span></a>
</li>
<li class="nav-item dropdown d-none d-lg-block">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Documentation
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="/v3/about">v3.x (Current)</a>
<a class="dropdown-item" href="/docs">v2.x (Unmaintained)</a>
</div>
</li>
<li class="nav-item dropdown d-none d-lg-block">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
English
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="/zh/">中文</a>
<a class="dropdown-item" href="/es/">Español</a>
</div>
</li>
</ul>
</div>
<div class="navbar-nav d-none d-lg-block"><div class="js-toggle-wrapper">
<div class="js-toggle">
<div class="js-toggle-track">
<div class="js-toggle-track-check">
<img src="data:image/png;base64,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" role="presentation" style="pointer-events: none;" width="16" height="16">
</div>
<div class="js-toggle-track-x">
<img src="data:image/png;base64,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" role="presentation" style="pointer-events: none;" width="16" height="16">
</div>
</div>
<div class="js-toggle-thumb"></div>
<input class="js-toggle-screenreader-only" type="checkbox" aria-label="Switch between Dark and Light mode">
</div>
</div>
<style>
.js-toggle-wrapper {
display: table;
margin: 0 auto;
padding-right: 0.5rem;
}
.js-toggle {
touch-action: pan-x;
display: inline-block;
position: relative;
cursor: pointer;
background-color: transparent;
border: 0;
padding: 0;
-webkit-touch-callout: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
}
.js-toggle-screenreader-only {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.js-toggle-track {
width: 50px;
height: 24px;
padding: 0;
border-radius: 30px;
background-color: hsl(222, 14%, 7%);
transition: all 0.2s ease;
}
.js-toggle-track-check {
position: absolute;
width: 17px;
height: 17px;
left: 5px;
top: 0px;
bottom: 0px;
margin-top: auto;
margin-bottom: auto;
line-height: 0;
opacity: 0;
transition: opacity 0.25s ease;
}
.js-toggle--checked .js-toggle-track-check {
opacity: 1;
transition: opacity 0.25s ease;
}
.js-toggle-track-x {
position: absolute;
width: 17px;
height: 17px;
right: 5px;
top: 0px;
bottom: 0px;
margin-top: auto;
margin-bottom: auto;
line-height: 0;
opacity: 1;
transition: opacity 0.25s ease;
}
.js-toggle--checked .js-toggle-track-x {
opacity: 0;
}
.js-toggle-thumb {
position: absolute;
top: 1px;
left: 1px;
width: 22px;
height: 22px;
border-radius: 50%;
background-color: #fafafa;
box-sizing: border-box;
transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
transform: translateX(0);
}
.js-toggle--checked .js-toggle-thumb {
transform: translateX(26px);
border-color: #19ab27;
}
.js-toggle--focus .js-toggle-thumb {
box-shadow: 0px 0px 2px 3px rgb(255, 167, 196);
}
.js-toggle:active .js-toggle-thumb {
box-shadow: 0px 0px 5px 5px rgb(255, 167, 196);
}
a.nav-link.active.dark-mode{
color: #000000 !important;
}
a.nav-link.dark-mode{
color: #008cba !important;
}
body.dark-mode,
td-sidebar.dark-mode,
a.td-sidebar-link__section.dark-mode,
a.td-sidebar-link.td-sidebar-link__page.dark-mode,
body.dark-mode main * {
background: rgb(45, 45, 45);
color: #f5f5f5;
}
body.dark-mode a {
color: #008cba;
}
section.py-5.bg-light.dark-mode{
background-color: rgb(45, 45, 45) !important;
color: #f5f5f5;
}
i.fa-paperclip.dark-mode{
background-color: #008cba !important;
color: #f5f5f5;
}
</style>
</div>
<div id="docsearch"></div>
</nav>
</header>
<div class="container-fluid td-default td-outer">
<main role="main" class="td-main">
<!-- Original CSS link for search styling -->
<!-- <link href="/dist/main.css" rel="stylesheet" type="text/css"> -->
<!-- Bootstrap core CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootswatch/4.4.1/yeti/bootstrap.min.css" rel="stylesheet" integrity="sha384-bWm7zrSUE5E+21rA9qdH5frkMpXvqjQm/WJw4L5PYQLNHrywI5zs5saEjIcCdGu1" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Custom styles for this template -->
<style>
/* Show it is fixed to the top */
body {
min-height: 75rem;
/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
}
.td-default main section:first-of-type {
padding-top: 0rem !important;
}
/* Home page Hero, contains logo and main tag line */
.jumbotron {
background-color: #fff;
padding: 0rem;
margin: 0rem;
}
@media (min-width: 576px) {
.jumbotron {
padding: 1rem;
}
}
.tag-line {
color: #37373C;
font-size: 50px;
font-weight: 300;
line-height: 120%;
text-align: center;
margin-bottom: 2rem;
padding-top: 5rem;
}
@media (max-width: 576px) {
.tag-line {
font-size: 32px;
font-weight: 300;
line-height: 120%;
padding-top: 2rem;
}
}
.tag-line-secondary {
color: #37373C;
font-size: 30px;
font-weight: 300;
line-height: 120%;
text-align: center;
margin-bottom: 2rem;
}
@media (max-width: 576px) {
.tag-line-secondary {
font-size: 22px;
font-weight: 300;
line-height: 28px;
text-align: left;
}
}
/* Get started button */
.btn {
border-radius: 4px;
}
.btn-primary {
border: 2px solid #289CE1;
background-color: #289CE1;
}
.features {
height: 54px;
font-size: 2rem;
font-weight: 300;
line-height: 120%;
margin-bottom: 3rem;
font-weight: bold;
}
@media (max-width: 576px) {
.features {
font-size: 2rem;
line-height: 120%;
}
}
.shape {
height: 87.1px;
width: 78.38px;
fill: #73C3D5;
}
/* Type */
h2 {
font-size: 28px;
font-weight: 500;
line-height: 32px;
}
h3 {
font-size: 24px;
font-weight: 500;
line-height: 28px;
}
.blockquote-footer {
color: #fff;
font-weight: bold;
margin: 2rem 0;
}
.blockquote-footer a {
color: #fff;
font-weight: normal;
text-decoration: underline;
}
cite {
clear: both;
}
.row {
font-size: initial;
}
section.bg-info {
background-color: #30638E !important;
}
/* Homepage override */
main.homepage {
padding: 0rem !important;
}
@media screen and (max-width: 768px){
.tag-line {
padding-top: 10rem !important;
}
}
</style>
<script src="https://kit.fontawesome.com/6dd680123e.js"></script>
</head>
<body>
<main role="main" class="homepage">
<section class="jumbotron text-center home-banner">
<div class="container">
<div class="row">
<div class="col-xs-12 col-lg-12">
<div class="tag-line">All In One CI/CD including everything you need to start exploring Kubernetes</div>
<div class="tag-line-secondary mx-auto">Multi-cluster GitOps, Tekton pipelines, Secrets management, Pull Request ChatOps and Preview Environments</div>
<div class="tag-line-secondary mx-auto">Accelerate with Jenkins X and our friendly community</div>
</div>
</div>
<p>
<a href="/v3/" class="btn btn-lg bg-primary text-light my-4"> <i class="fa fa-paperclip fa-2x align-middle"></i> Get Started</a> 
<a href="/v3/develop/developing/#demo" class="btn btn-lg btn-secondary my-4"> <i class="fa fa-play-circle fa-2x align-middle"></i> Watch a demo </a>
<a href="https://github.com/jenkins-x/jx" class="btn btn-lg btn-secondary my-4" target="_BLANK" rel="noopener noreferrer"><i class="fa fa-github fa-2x align-middle"></i> View Repo </a>
</p>
</div>
</section>
<section class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col">
<div class="features text-center">Work on your code and let Jenkins X automate everything else</div>
</div>
</div>
<div class="row">
<div class="col pt-2">
<div class="media">
<span style="font-size:2em; color:cornflowerblue">
<i class="fa fa-stopwatch fa-4x"></i>
</span>
<div class="media-body pl-4">
<h2 class="mt-0"><a href="/v3/develop/create-project/">Automated CI/CD</a></h2>
<h3>GitOps based Tekton pipelines</h3>
<p>Rather than having to have deep knowledge of Kubernetes, containers or Tekton, Jenkins X will
automate awesome Tekton pipelines for your projects that fully implements CI and CD
which you can <a href="/v3/develop/pipelines/editing/">manage via GitOps</a></p>
</div>
</div>
</div>
<div class="col pt-2">
<div class="media">
<span class="fa-layers" style="font-size:2em; color: Tomato;">
<i class="fas fa-server fa-3x" style="color:green"></i>
<i class="fa fa-server fa-3x" data-fa-transform="shrink-11 down-4.2 right-4" style="color: Dodgerblue;"></i>
</span>
<div class="media-body pl-4">
<h2 class="mt-0"><a href="/v3/develop/environments/promotion/">Environments</a></h2>
<h3>Promote change via GitOps</h3>
<p>Each team gets a set of Environments. Jenkins X then automates the management of the Environments and
the Promotion of new versions of Applications between Environments via GitOps and Pull Requests</p>
</div>
</div>
</div>
<div class="w-100">
<p class="h-75 d-inline-block"><br /></p>
</div>
<div class="col pt-2">
<div class="media">
<span style="font-size:2em; color:goldenrod">
<i class="fa fa-server fa-4x"></i>
</span>
<div class="media-body pl-4">
<h2 class="mt-0"><a href="/v3/develop/environments/preview/">Preview Environments</a></h2>
<h3>Pull Request Preview Environments</h3>
<p>Jenkins X automatically spins up Preview Environments for your Pull Requests so you can get fast
feedback before changes are merged to the main branch</p>
</div>
</div>
</div>
<div class="col pt-2">
<div class="media">
<span style="font-size:2em; color: Tomato;">
<i class="fa fa-comments fa-4x"></i>
</span>
<div class="media-body pl-4">
<h2 class="mt-0"><a href="/v3/develop/developing/#using-chatops">ChatOps</a></h2>
<h3>Feedback and chat on Issues and Pull Requests</h3>
<p>Jenkins X automatically comments on your Commits, Issues and Pull Requests with feedback as code is
ready to be previewed, is promoted to environments or if Pull Requests are generated automatically to
upgrade versions</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col text-center">
<p class="mt-4">
<a href="/v3/develop/" class="btn btn-lg bg-primary text-light">Learn More</a>
</p>
</div>
</div>
</div>
</section>
<section class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-3 text-center">
<span style="font-size: 64px; color: #37373C;">
<i class="fab fa-slack"></i>
</span>
<h2>Join the conversation</h2>
<p>Have a question? Learn more by talking with other contributors.</p><br/>
<p><a class="btn btn-md btn-dark text-light " href="/community/" role="button"> Join our channels </a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-3 text-center">
<span style="font-size: 64px; color: #37373C;">
<i class="fab fa-github"></i>
</span>
<h2>Contributors welcome</h2>
<p>We value every contribution. Join us on GitHub to learn how you can help.</p>
<p><a class="btn btn-md btn-dark text-light my-2" href="docs/contributing/" role="button">Contribute</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-3 text-center">
<span style="font-size: 64px; color: #37373C;">
<i class="fab fa-twitter"></i>
</span>
<h2>Follow us on Twitter</h2>
<p>Don't miss out! Follow us for feature announcements and other news.</p>
<p><a class="btn btn-md btn-dark text-light my-2" href="https://twitter.com/jenkinsxio" role="button">Follow</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-3 text-center">
<span style="font-size: 64px; color: #37373C;">
<i class="fab fa-youtube"></i>
</span>
<h2>Jenkins X YouTube Channel</h2>
<p>Subscribe and get recordings for tutorials, webinars, office hours and more.</p>
<p><a class="btn btn-md btn-dark text-light" href="https://www.youtube.com/channel/UCN2kblPjXKMcjjVYmwvquvg?view_as=subscriber" role="button">Subscribe</a></p>
</div><!-- /.col-lg-4 -->
</div>
</div>
</section>
<!-- Logo List Section -->
<section id="users" class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col">
<p class="features text-center lead">
Jenkins X is used by<br>
<span style="font-size: 1rem;font-weight: 400;">in alphabetical order</span>
</p>
</div>
</div>
<div class="row">
<div class="col-xl-3 col-md-6 col-xs-12">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="/images/logo/dexai-logo.jpg" alt="Dexai Robotics logo">
<div class="card-body">
<a href="https://www.dexai.com/"><p class="card-text text-center">Dexai Robotics</p></a>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-xs-12">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="/images/logo/mentormedier-logo.svg" height="286" alt="Mentor Medier logo">
<div class="card-body">
<a href="https://www.mentormedier.no/"><p class="card-text text-center">Mentor Medier</p></a>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-xs-12">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="/images/logo/mqube-logo.svg" alt="MQube logo">
<div class="card-body">
<a href="https://mqube.com/"><p class="card-text text-center">MQube</p></a>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-xs-12">
<div class="card" style="width: 18rem;">
<img class="card-img-top p-3" src="/images/logo/smart-ix-logo-colored.svg" height="286" alt="SMART-iX logo">
<div class="card-body">
<a href="https://smart-ix.ai/"><p class="card-text text-center">SMART-iX</p></a>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-xs-12">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="/images/logo/tailosoft-logo.svg" height="286" alt="Tailosoft logo" style="object-fit: contain;">
<div class="card-body">
<a href="https://tailosoft.com/"><p class="card-text text-center">Tailosoft</p></a>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-xs-12">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="/images/logo/ticket-logo.svg" height="286" alt="Ticket logo">
<div class="card-body">
<a href="https://www.ticket.se/"><p class="card-text text-center">Ticket</p></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Logo List Section -->
<section class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col">
<p class="features text-center">Jenkins X Accelerates Real Transformation</p>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I've been playing with @jenkinsxio lately, and I have this feeling that I might get fired when I finish setting it up. This thing does everything for you, and automatically!<br><br>I just keep repeating to my self: this is bananas, how can this be so awesome?!</p>— Shailyn Ortiz (@ROOT_OR_DEATH) <a href="https://twitter.com/ROOT_OR_DEATH/status/1154827663758036992?ref_src=twsrc%5Etfw">July 26, 2019</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="col-xs-12 col-md-6">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I wished <a href="https://twitter.com/Magento?ref_src=twsrc%5Etfw">@Magento</a> Commerce Cloud would evolve their build and deployment pipeline as well as their hosting environment to a cloud native <a href="https://twitter.com/hashtag/K8S?src=hash&ref_src=twsrc%5Etfw">#K8S</a> process. Watch <a href="https://t.co/kdIDHkGic0">https://t.co/kdIDHkGic0</a> and have a chat with @jenkinsxio !</p>— Björn Kraus 🇺🇦 (@BjoernKraus) <a href="https://twitter.com/BjoernKraus/status/1242046208044142594?ref_src=twsrc%5Etfw">March 23, 2020</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="w-100">
<p class="h-75 d-inline-block"><br /></p>
</div>
</div>
</div>
</section>
</main>
</body>
</main>
<footer class="bg-dark py-5 d-print-none">
<div class="container-fluid mx-sm-12">
<div class="row">
<div class="col-12 col-sm-12 text-center text-xs-center order-sm-2">
<ul class="list-inline mb-3">
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="Newsletter" aria-label="Newsletter">
<a class="text-white" target="_blank" href="/community/">
<i class="fa fa-envelope"></i>
</a>
</li>
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="Twitter" aria-label="Twitter">
<a class="text-white" target="_blank" href="https://twitter.com/jenkinsxio">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="Calendar" aria-label="Calendar">
<a class="text-white" target="_blank" href="/community/calendar/">
<i class="fas fa-calendar-alt"></i>
</a>
</li>
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="Youtube" aria-label="Youtube">
<a class="text-white" target="_blank" href="https://www.youtube.com/channel/UCN2kblPjXKMcjjVYmwvquvg">
<i class="fab fa-youtube"></i>
</a>
</li>
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="Github" aria-label="Github">
<a class="text-white" target="_blank" href="https://github.com/jenkins-x/jx">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="Contribute" aria-label="Contribute">
<a class="text-white" target="_blank" href="https://jenkins-x.io/community/documentation/">
<i class="fas fa-edit"></i>
</a>
</li>
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User Slack Channel" aria-label="User Slack Channel">
<a class="text-white" target="_blank" href="https://kubernetes.slack.com/messages/C9MBGQJRH">
<i class="fab fa-slack"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 text-center text-xs-right order-sm-6">
<p>
<small class="text-white">Copyright © 2024 The Jenkins X Authors. All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank">Privacy Policy</a></small>
</p>
<p>
<small class="text-white">
Copyright © 2024 The Linux Foundation®. All rights reserved.<br/>
The Linux Foundation has registered trademarks and uses trademarks.
For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage">Trademark Usage</a> page.<br/>
Linux is a registered trademark of Linus Torvalds.<br/>
Linux Foundation <a href="http://www.linuxfoundation.org/privacy">Privacy Policy</a> and <a href="http://www.linuxfoundation.org/terms">Terms of Use</a>
</small>
</p>
</div>
</div>
</div>
</footer>
</div>
<script src="https://unpkg.com/mermaid@8.8.0/dist/mermaid.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@3"></script>
<script src="https://cdn.jsdelivr.net/npm/medium-zoom@1.0.6/dist/medium-zoom.min.js" integrity="sha256-EdPgYcPk/IIrw7FYeuJQexva49pVRZNmt3LculEr7zM=" crossorigin="anonymous"></script>
<script src="/js/main.min.c0c90635faf9682faedfe4c162a15282f2be9fd51efc862779a00dc48ea92810.js" integrity="sha256-wMkGNfr5aC+u3+TBYqFSgvK+n9Ue/IYneaANxI6pKBA=" crossorigin="anonymous"></script>
<script>
let lang = $('html').attr('lang');
docsearch({
searchParameters: {
facetFilters: ['lang:' + lang ]
},
container: '#docsearch',
appId: 'GIN1OS4UKS',
indexName: 'jenkins-x',
apiKey: 'a9c99be0d65d1a8f6059be9104a12cd4',
});
</script>
<script>mermaid.initialize({startOnLoad:true});</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5BWMXGJ');</script>
<script>
var body = document.body;
var aref = document.getElementsByClassName('td-sidebar-link__section');
var are = document.getElementsByClassName('td-sidebar-link td-sidebar-link__page');
var anav = document.getElementsByClassName('nav-link');
var intro_bg = document.getElementsByClassName('py-5 bg-light');
var paperclip = document.getElementsByClassName('fa-paperclip');
var elems = [aref,are,anav,intro_bg,paperclip];
var switcher = document.getElementsByClassName('js-toggle')[0];
switcher.addEventListener("click", function() {
this.classList.toggle('js-toggle--checked');
this.classList.add('js-toggle--focus');
if (this.classList.contains('js-toggle--checked')) {
body.classList.add('dark-mode');
for (i = 0; i < elems.length; i++) {
for(j = 0;j<elems[i].length;j++){
elems[i][j].classList.add('dark-mode');
}
}
localStorage.setItem('darkMode', 'true');
} else {
body.classList.remove('dark-mode');
for (i = 0; i < elems.length; i++) {
for(j = 0;j<elems[i].length;j++){
elems[i][j].classList.remove('dark-mode');
}
}
setTimeout(function() {
localStorage.removeItem('darkMode');
}, 100);
}
})
if (localStorage.getItem('darkMode')) {
body.classList.add('dark-mode');
switcher.classList.add('js-toggle--checked');
for (i = 0; i < elems.length; i++) {
for(j = 0;j<elems[i].length;j++){
elems[i][j].classList.add('dark-mode');
}
}
}
let tagSelector = 'img';
let classSelector = '';
let idSelector = '';
let deselector = ':not([role="presentation"],[alt*="logo"],[alt*="LOGO"],[alt*="Logo"])';
let combinedSelector = tagSelector+classSelector+idSelector+deselector;
var images = document.querySelectorAll(combinedSelector);
mediumZoom(images, {
background: "#121212",
});
</script>
<script src='/js/prism.js'></script>
</body>
</html>