forked from jenkins-x/jenkins-x-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1257 lines (1077 loc) · 101 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
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
<!doctype html>
<html 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.74.0" />
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<link rel="alternate" type="application/rss+xml" href="https://jenkins-x.io/index.xml">
<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 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"/>
<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>
<link rel="preload" href="/scss/main.min.3f0e9ce36e01094b6f9ea35b86af30e9ed3ef0c5375cff3c40c14515c883ffae.css" as="style">
<link href="/scss/main.min.3f0e9ce36e01094b6f9ea35b86af30e9ed3ef0c5375cff3c40c14515c883ffae.css" rel="stylesheet" integrity="">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
<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' />
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/prism.css" />
</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.3h36.5c4 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.2M112.6 85.2c-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.4S116.3 88.9 112.6 85.2"/></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.2M201.2 85.2c-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.6-27.3 28.8c-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-14L41 117c7 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.8V81.9c0-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.1zM186.8 21.1l-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.1zM265.2 91.7l-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.9zM113.6 197.7c-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.7zM171.4 197.7c-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><br>
<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>Docs</span></a>
</li>
<li class="nav-item mr-4 mb-2 mb-lg-0">
<a class="nav-link" href="/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">
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;
}
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 class="navbar-nav d-none d-lg-block">
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" id="search-input" type="search" placeholder=" Search this site…" aria-label="Search this site…" autocomplete="off"/>
</form>
</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;
}
</style>
<script src="https://kit.fontawesome.com/6dd680123e.js"></script>
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/d0c128ac1f69ba2bb20742976/9159f4f527ec7e8e4d019eb5c.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">Accelerate Your Continuous Delivery on Kubernetes</div>
<div class="tag-line-secondary mx-auto">Jenkins X provides pipeline automation, built-in GitOps, and preview environments to help teams collaborate and accelerate their software delivery at any scale.</div>
</div>
</div>
<p>
<a href="/docs/getting-started/" 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="https://github.com/jenkins-x/jx" class="btn btn-secondary btn-lg" target="_BLANK"><i class="fa fa-github fa-2x align-middle"></i> View Repo </a>
</p>
</div>
</section>
<!-- <section class="py-5">
<div class="container">
<div class="col col-lg-12">
<div class="features text-center">Getting started with Jenkins X is easy</div>
</div>
<div class="col col-lg-12">
<ul class="nav nav-tabs nav-fill" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="cli-tab" data-toggle="tab" href="#install_cli" role="tab" aria-controls="cli" aria-selected="true"><h1>Install CLI</h1></a>
</li>
<li class="nav-item">
<a class="nav-link" id="deploy-tab" data-toggle="tab" href="#deploy" role="tab" aria-controls="deploy" aria-selected="false"><h1>Deploy to Cloud</h1></a>
</li>
<li class="nav-item">
<a class="nav-link" id="quickstart-tab" data-toggle="tab" href="#quickstart" role="tab" aria-controls="quickstart" aria-selected="false"><h1>Create a QuickStart</h1></a>
</li>
</ul>
<p> </p>
<div class="tab-content">
<div class="tab-pane active" id="install_cli" role="tabpanel" aria-labelledby="install-tab">
<div class="row">
<div class="col col-lg-6">
<p> </p>
<h1>Install CLI</h1>
<p>Quickly install the latest version of the Jenkins X CLI to get started. With the CLI you can:</p>
<ul class="list-inline">
<li class="list-inline-item">Configure your Kubernetes Cluster</li>
<li class="list-inline-item">Manage your environment via GitOps</li>
<li>Create and manage Apps</li>
<li>Create a QuickStart in your preferred language</li>
<li>Open the UI</li>
</ul>
<div class="inline-flex items-center bg-gray-200 rounded-lg p-2">
<span title="JavaScript">
<svg
class="h-8 ml-1 rounded" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0H1e2V1e2H0V0z" fill="#f7df1e"></path>
<path
d="M26.2938 83.5672 33.9461 78.9359C35.4227 81.5535 36.7656 83.7684 39.9871 83.7684 43.075 83.7684 45.0223 82.5606 45.0223 77.8621V45.9098H54.4195V77.9949C54.4195 87.7281 48.7141 92.1586 40.3899 92.1586 32.8723 92.1586 28.5086 88.2652 26.2934 83.5664L26.2938 83.5672zM59.5238 82.5602 67.1754 78.1301C69.1898 81.4195 71.8078 83.8359 76.4391 83.8359 80.3332 83.8359 82.816 81.8891 82.816 79.2039 82.816 75.982 80.2652 74.8406 75.9692 72.9617L73.6203 71.9539C66.8402 69.0684 62.343 65.4434 62.343 57.791 62.343 50.7426 67.7129 45.3723 76.1039 45.3723 82.0781 45.3723 86.3742 47.4535 89.4617 52.8906L82.1445 57.5899C80.5332 54.7035 78.7887 53.5625 76.1035 53.5625 73.3512 53.5625 71.6059 55.3078 71.6059 57.5899 71.6059 60.409 73.3512 61.5508 77.3785 63.2961L79.7277 64.3027C87.716 67.7266 92.2133 71.2168 92.2133 79.0699 92.2133 87.5285 85.568 92.1598 76.6402 92.1598 67.9141 92.1598 62.2754 87.9981 59.5234 82.5606"
fill="#000"></path>
</svg></span>
<span title="TypeScript">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-4 h-8 rounded" viewBox="0 0 505 305">
<defs>
<clipPath id="a">
<path
d="M239.03 226.605l-42.13 24.317c-1.578.91-2.546 2.59-2.546 4.406v48.668c0 1.817.968 3.496 2.546 4.406l42.133 24.336c1.575.907 3.517.907 5.09 0l42.126-24.336c1.57-.91 2.54-2.59 2.54-4.406v-48.668c0-1.816-.97-3.496-2.55-4.406l-42.12-24.317c-.79-.453-1.67-.68-2.55-.68-.88 0-1.76.227-2.55.68" />
</clipPath>
<linearGradient id="b" x1="-.348" x2="1.251" gradientTransform="rotate(116.114 53.1 202.97) scale(86.48)"
gradientUnits="userSpaceOnUse">
<stop offset=".3" stop-color="#3E863D" />
<stop offset=".5" stop-color="#55934F" />
<stop offset=".8" stop-color="#5AAD45" />
</linearGradient>
<clipPath id="c">
<path
d="M195.398 307.086c.403.523.907.976 1.5 1.316l36.14 20.875 6.02 3.46c.9.52 1.926.74 2.934.665.336-.027.672-.09 1-.183l44.434-81.36c-.34-.37-.738-.68-1.184-.94l-27.586-15.93-14.582-8.39c-.414-.24-.863-.41-1.32-.53zm0 0" />
</clipPath>
<linearGradient id="d" x1="-.456" x2=".582"
gradientTransform="rotate(-36.46 550.846 -214.337) scale(132.798)" gradientUnits="userSpaceOnUse">
<stop offset=".57" stop-color="#3E863D" />
<stop offset=".72" stop-color="#619857" />
<stop offset="1" stop-color="#76AC64" />
</linearGradient>
<clipPath id="e">
<path
d="M241.066 225.953c-.707.07-1.398.29-2.035.652l-42.01 24.247 45.3 82.51c.63-.09 1.25-.3 1.81-.624l42.13-24.336c1.3-.754 2.19-2.03 2.46-3.476l-46.18-78.89c-.34-.067-.68-.102-1.03-.102-.14 0-.28.007-.42.02" />
</clipPath>
<linearGradient id="f" x1=".043" x2=".984" gradientTransform="translate(192.862 279.652) scale(97.417)"
gradientUnits="userSpaceOnUse">
<stop offset=".16" stop-color="#6BBF47" />
<stop offset=".38" stop-color="#79B461" />
<stop offset=".47" stop-color="#75AC64" />
<stop offset=".7" stop-color="#659E5A" />
<stop offset=".9" stop-color="#3E863D" />
</linearGradient>
</defs>
<path fill="#689f63"
d="M218.647 270.93c-1.46 0-2.91-.383-4.19-1.12l-13.337-7.896c-1.992-1.114-1.02-1.508-.363-1.735 2.656-.93 3.195-1.14 6.03-2.75.298-.17.688-.11.993.07l10.246 6.08c.37.2.895.2 1.238 0l39.95-23.06c.37-.21.61-.64.61-1.08v-46.1c0-.46-.24-.87-.618-1.1l-39.934-23.04c-.37-.22-.86-.22-1.23 0l-39.926 23.04c-.387.22-.633.65-.633 1.09v46.1c0 .44.24.86.62 1.07l10.94 6.32c5.94 2.97 9.57-.53 9.57-4.05v-45.5c0-.65.51-1.15 1.16-1.15h5.06c.63 0 1.15.5 1.15 1.15v45.52c0 7.92-4.32 12.47-11.83 12.47-2.31 0-4.13 0-9.21-2.5l-10.48-6.04c-2.59-1.5-4.19-4.3-4.19-7.29v-46.1c0-3 1.6-5.8 4.19-7.28l39.99-23.07c2.53-1.43 5.89-1.43 8.4 0l39.94 23.08c2.58 1.49 4.19 4.28 4.19 7.28v46.1c0 2.99-1.61 5.78-4.19 7.28l-39.94 23.07c-1.28.74-2.73 1.12-4.21 1.12" />
<path fill="#689f63"
d="M230.987 239.164c-17.48 0-21.145-8.024-21.145-14.754 0-.64.516-1.15 1.157-1.15h5.16c.57 0 1.05.415 1.14.978.78 5.258 3.1 7.91 13.67 7.91 8.42 0 12-1.902 12-6.367 0-2.57-1.02-4.48-14.1-5.76-10.94-1.08-17.7-3.49-17.7-12.24 0-8.06 6.8-12.86 18.19-12.86 12.79 0 19.13 4.44 19.93 13.98.03.33-.09.65-.31.89-.22.23-.53.37-.85.37h-5.19c-.54 0-1.01-.38-1.12-.9-1.25-5.53-4.27-7.3-12.48-7.3-9.19 0-10.26 3.2-10.26 5.6 0 2.91 1.26 3.76 13.66 5.4 12.28 1.63 18.11 3.93 18.11 12.56 0 8.7-7.26 13.69-19.92 13.69m48.66-48.89h1.34c1.1 0 1.31-.77 1.31-1.22 0-1.18-.81-1.18-1.26-1.18h-1.38zm-1.63-3.78h2.97c1.02 0 3.02 0 3.02 2.28 0 1.59-1.02 1.92-1.63 2.12 1.19.08 1.27.86 1.43 1.96.08.69.21 1.88.45 2.28h-1.83c-.05-.4-.33-2.6-.33-2.72-.12-.49-.29-.73-.9-.73h-1.51v3.46h-1.67zm-3.57 4.3c0 3.58 2.89 6.48 6.44 6.48 3.58 0 6.47-2.96 6.47-6.48 0-3.59-2.93-6.44-6.48-6.44-3.5 0-6.44 2.81-6.44 6.43m14.16.03c0 4.24-3.47 7.7-7.7 7.7-4.2 0-7.7-3.42-7.7-7.7 0-4.36 3.58-7.7 7.7-7.7 4.15 0 7.69 3.35 7.69 7.7" />
<path fill="#333" fill-rule="evenodd"
d="M94.936 90.55c0-1.84-.97-3.53-2.558-4.445l-42.356-24.37c-.715-.42-1.516-.64-2.328-.67h-.438c-.812.03-1.613.25-2.34.67L2.562 86.105C.984 87.025 0 88.715 0 90.555l.093 65.64c0 .91.47 1.76 1.27 2.21.78.48 1.76.48 2.54 0l25.18-14.42c1.59-.946 2.56-2.618 2.56-4.44V108.88c0-1.83.97-3.52 2.555-4.43l10.72-6.174c.796-.46 1.67-.688 2.56-.688.876 0 1.77.226 2.544.687l10.715 6.172c1.586.91 2.56 2.6 2.56 4.43v30.663c0 1.82.983 3.5 2.565 4.44l25.164 14.41c.79.47 1.773.47 2.56 0 .776-.45 1.268-1.3 1.268-2.21zm199.868 34.176c0 .457-.243.88-.64 1.106l-14.548 8.386c-.395.227-.883.227-1.277 0l-14.55-8.386c-.4-.227-.64-.65-.64-1.106V107.93c0-.458.24-.88.63-1.11l14.54-8.4c.4-.23.89-.23 1.29 0l14.55 8.4c.4.23.64.652.64 1.11zM298.734.324c-.794-.442-1.76-.43-2.544.027-.78.46-1.262 1.3-1.262 2.21v65c0 .64-.34 1.23-.894 1.55-.55.32-1.235.32-1.79 0L281.634 63c-1.58-.914-3.526-.914-5.112 0l-42.37 24.453c-1.583.91-2.56 2.6-2.56 4.42v48.92c0 1.83.977 3.51 2.56 4.43l42.37 24.47c1.582.91 3.53.91 5.117 0l42.37-24.48c1.58-.92 2.56-2.6 2.56-4.43V18.863c0-1.856-1.01-3.563-2.63-4.47zm141.093 107.164c1.574-.914 2.543-2.602 2.543-4.422V91.21c0-1.824-.97-3.507-2.547-4.425l-42.1-24.44c-1.59-.92-3.54-.92-5.13 0l-42.36 24.45c-1.59.92-2.56 2.6-2.56 4.43v48.9c0 1.84.99 3.54 2.58 4.45l42.09 23.99c1.55.89 3.45.9 5.02.03l25.46-14.15c.8-.45 1.31-1.3 1.31-2.22 0-.92-.49-1.78-1.29-2.23l-42.62-24.46c-.8-.45-1.29-1.3-1.29-2.21v-15.34c0-.916.48-1.76 1.28-2.216l13.26-7.65c.79-.46 1.76-.46 2.55 0l13.27 7.65c.79.45 1.28 1.3 1.28 2.21v12.06c0 .91.49 1.76 1.28 2.22.79.45 1.77.45 2.56-.01zm0 0" />
<path fill="#689f63" fill-rule="evenodd"
d="M394.538 105.2c.3-.177.676-.177.98 0l8.13 4.69c.304.176.49.5.49.85v9.39c0 .35-.186.674-.49.85l-8.13 4.69c-.304.177-.68.177-.98 0l-8.125-4.69c-.31-.176-.5-.5-.5-.85v-9.39c0-.35.18-.674.49-.85zm0 0" />
<g clip-path="url(#a)" transform="translate(-78.306 -164.016)">
<path fill="url(#b)" d="M331.363 246.793l-118.715-58.19-60.87 124.174L270.49 370.97zm0 0" />
</g>
<g clip-path="url(#c)" transform="translate(-78.306 -164.016)">
<path fill="url(#d)" d="M144.07 264.004l83.825 113.453 110.86-81.906-83.83-113.45zm0 0" />
</g>
<g clip-path="url(#e)" transform="translate(-78.306 -164.016)">
<path fill="url(#f)" d="M197.02 225.934v107.43h91.683v-107.43zm0 0" />
</g>
</svg></span>
<span title="Python">
<svg class="mr-3 h-8" viewBox="0 0 101 100" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M50.0246.0C24.4415.0 26.0389 11.0665 26.0389 11.0665L26.0673 22.5318H50.4807V25.974H16.3706C16.3706 25.974.0 24.122.0 49.8705.0 75.6197 14.2887 74.7066 14.2887 74.7066H22.8161V62.7579C22.8161 62.7579 22.3564 48.505 36.8767 48.505H61.0905C61.0905 48.505 74.6945 48.7243 74.6945 35.3901V13.3428C74.6945 13.3428 76.7607.0 50.0246.0zM36.563 7.71017C37.1399 7.70965 37.7112 7.82262 38.2443 8.0426 38.7774 8.26258 39.2618 8.58526 39.6697 8.99217 40.0777 9.39908 40.4012 9.88224 40.6217 10.414 40.8422 10.9458 40.9555 11.5157 40.955 12.0911 40.9555 12.6666 40.8422 13.2365 40.6217 13.7683 40.4012 14.3 40.0777 14.7832 39.6697 15.1901 39.2618 15.597 38.7774 15.9197 38.2443 16.1397 37.7112 16.3596 37.1399 16.4726 36.563 16.4721 35.9861 16.4726 35.4147 16.3596 34.8816 16.1397 34.3486 15.9197 33.8642 15.597 33.4562 15.1901 33.0483 14.7832 32.7248 14.3 32.5043 13.7683 32.2838 13.2365 32.1705 12.6666 32.171 12.0911 32.1705 11.5157 32.2838 10.9458 32.5043 10.414 32.7248 9.88224 33.0483 9.39908 33.4562 8.99217 33.8642 8.58526 34.3486 8.26258 34.8816 8.0426 35.4147 7.82262 35.9861 7.70965 36.563 7.71017z"
fill="url(#paint0_linear)"></path>
<path
d="M50.7511 1e2C76.3341 1e2 74.7368 88.9335 74.7368 88.9335L74.7084 77.4686H50.2945V74.0264H84.4046C84.4046 74.0264 100.775 75.8784 100.775 50.1291 100.775 24.3802 86.4865 25.2934 86.4865 25.2934H77.9591V37.2417C77.9591 37.2417 78.4188 51.4946 63.8985 51.4946H39.6847C39.6847 51.4946 26.0807 51.2753 26.0807 64.6099V86.6576C26.0807 86.6576 24.0149 1e2 50.7507 1e2H50.7511zM64.2126 92.2906C63.6357 92.2911 63.0644 92.1782 62.5313 91.9582 61.9982 91.7382 61.5138 91.4156 61.1059 91.0086 60.698 90.6017 60.3745 90.1186 60.1539 89.5868 59.9334 89.055 59.8202 88.4851 59.8207 87.9097 59.8201 87.3342 59.9333 86.7642 60.1538 86.2324 60.3743 85.7006 60.6978 85.2174 61.1058 84.8105 61.5137 84.4035 61.9981 84.0808 62.5312 83.8608 63.0643 83.6408 63.6357 83.5278 64.2126 83.5283 64.7895 83.5278 65.3609 83.6408 65.894 83.8607 66.4271 84.0807 66.9114 84.4034 67.3194 84.8103 67.7273 85.2172 68.0508 85.7004 68.2713 86.2321 68.4919 86.7639 68.6051 87.3338 68.6046 87.9093 68.6051 88.4847 68.4919 89.0547 68.2713 89.5864 68.0508 90.1182 67.7273 90.6013 67.3194 91.0082 66.9114 91.4152 66.4271 91.7378 65.894 91.9578 65.3609 92.1778 64.7895 92.2908 64.2126 92.2902V92.2906z"
fill="url(#paint1_linear)"></path>
<defs>
<linearGradient id="paint0_linear" x1="9.68446" y1="8.9944" x2="59.5016" y2="58.4384"
gradientUnits="userSpaceOnUse">
<stop stop-color="#387eb8"></stop>
<stop offset="1" stop-color="#366994"></stop>
</linearGradient>
<linearGradient id="paint1_linear" x1="40.3383" y1="40.6641" x2="93.8424" y2="91.3702"
gradientUnits="userSpaceOnUse">
<stop stop-color="#ffe052"></stop>
<stop offset="1" stop-color="#ffc331"></stop>
</linearGradient>
</defs>
</svg></span>
<span title="Go">
<svg class="h-4 mr-3" viewBox="0 0 200 75" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M15.0928 22.7088C14.7022 22.7088 14.6061 22.5127 14.8006 22.2202L16.8451 19.5815C17.0404 19.2882 17.5264 19.0929 17.9154 19.0929H52.6786C53.0693 19.0929 53.1654 19.3862 52.9708 19.6795L51.3146 22.2202C51.1193 22.5135 50.6333 22.8068 50.3412 22.8068L15.0912 22.7088H15.0928zM.389698 31.7009C-925616e-9 31.7009-.0970191 31.5049.0975117 31.2124L2.14204 28.5736C2.33735 28.2803 2.82329 28.0851 3.21235 28.0851H47.6162C48.0068 28.0851 48.2005 28.3784 48.1029 28.6716L47.324 31.0163C47.2263 31.4084 46.8372 31.6029 46.4474 31.6029L.389698 31.7009zM23.9545 40.6931C23.5639 40.6931 23.4678 40.3998 23.6623 40.1065L25.0256 37.663C25.2209 37.3697 25.61 37.0764 25.999 37.0764H45.474C45.8646 37.0764 46.0583 37.3697 46.0583 37.7602L45.863 40.1049C45.863 40.497 45.4724 40.7887 45.1818 40.7887L23.9537 40.6907 23.9545 40.6931zM125.032 20.9491 108.671 25.2495C107.21 25.6416 107.113 25.7381 105.846 24.2724 104.386 22.61 103.315 21.5278 101.27 20.5586 95.1356 17.5285 89.195 18.4084 83.645 22.025 77.0231 26.3254 73.6153 32.6788 73.7122 40.5958 73.8098 48.4141 79.1653 54.8663 86.8583 55.9421 93.4801 56.822 99.0301 54.4757 103.413 49.4915 104.289 48.4172 105.069 47.2433 106.042 45.8749H87.2489C85.2044 45.8749 84.7176 44.6045 85.3989 42.9421 86.6645 39.912 89.002 34.8298 90.3653 32.2883 90.6575 31.7017 91.3387 30.7246 92.7996 30.7246H128.245C128.05 33.3634 128.05 36.0021 127.66 38.6417 126.59 45.6789 123.961 52.1295 119.676 57.7991 112.665 67.0837 103.512 72.8513 91.9239 74.4158 82.3809 75.6861 73.52 73.8292 65.7286 67.9651 58.5146 62.49 54.4325 55.2568 53.3615 46.2654 52.0958 35.6116 55.2115 26.0337 61.6388 17.6273 68.5528 8.53716 77.7059 2.77033 88.9043.718139 98.0574-.944314 106.821.131575 114.709 5.5071 119.87 8.92767 123.57 13.6194 126.006 19.289 126.59 20.1688 126.201 20.6574 125.032 20.9514V20.9491z"
fill="#00acd7"></path>
<path
d="M157.262 75C148.401 74.804 140.318 72.2554 133.502 66.3976 127.757 61.4126 124.154 55.0584 122.986 47.5335 121.233 36.4883 124.252 26.7136 130.874 18.0155 137.983 8.63206 146.551 3.74508 158.139 1.69289 168.072-.0667977 177.421.91107 185.892 6.6779 193.585 11.9554 198.356 19.0914 199.622 28.4741 201.278 41.6694 197.48 52.4204 188.424 61.6086 181.997 68.1565 174.11 72.2624 165.053 74.1194 162.425 74.6079 159.796 74.7059 157.264 74.9992L157.262 75zM180.438 35.5128C180.34 34.2425 180.34 33.2646 180.146 32.2875 178.392 22.6108 169.532 17.1372 160.281 19.2882 151.225 21.3404 145.382 27.1065 143.24 36.2954 141.487 43.9192 145.188 51.6418 152.199 54.7683 157.554 57.113 162.91 56.8205 168.071 54.1817 175.764 50.1824 179.951 43.9192 180.439 35.5128H180.438z"
fill="#00acd7"></path>
</svg></span>
<span title=".NET Core">
<svg class="h-8 mr-1 rounded" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 64 64">
<defs>
<style>
.cls-1 {
fill: #5c2d91
}
.cls-2,
.cls-3 {
fill: #fff
}
.cls-2 {
opacity: .1
}
.cls-4 {
fill: #f2f2f2
}
</style>
</defs>
<title>logo_NETcore</title>
<circle class="cls-1" cx="32" cy="32" r="32"></circle>
<path class="cls-2" d="M9.82 9A32 32 0 1 0 55 54.18z"></path>
<path class="cls-3"
d="M7.4 37.25a1.35 1.35.0 0 1-1-.42 1.38 1.38.0 0 1-.41-1 1.4 1.4.0 0 1 .41-1 1.34 1.34.0 0 1 1-.43 1.37 1.37.0 0 1 1 .43 1.39 1.39.0 0 1 .42 1 1.37 1.37.0 0 1-.42 1A1.38 1.38.0 0 1 7.4 37.25z">
</path>
<path class="cls-3"
d="M27.27 37H24.65L15.28 22.46a6 6 0 0 1-.58-1.14h-.08a18.72 18.72.0 0 1 .1 2.5V37H12.59V18.77h2.77l9.12 14.28q.57.89.74 1.22h.05a19.28 19.28.0 0 1-.13-2.68V18.77h2.13z">
</path>
<path class="cls-3" d="M41.69 37H32V18.77h9.24V20.7H34.18v6.06h6.58v1.92H34.18V35h7.52z"></path>
<path class="cls-3" d="M56 20.7H50.7V37H48.57V20.7H43.33V18.77H56z"></path>
<path class="cls-4"
d="M26.12 49.4a4.93 4.93.0 0 1-2.32.49 3.74 3.74.0 0 1-2.87-1.15 4.26 4.26.0 0 1-1.08-3 4.46 4.46.0 0 1 1.21-3.26 4.12 4.12.0 0 1 3.08-1.24 4.93 4.93.0 0 1 2 .35v1a4 4 0 0 0-2-.5 3.06 3.06.0 0 0-2.35 1 3.64 3.64.0 0 0-.9 2.58 3.47 3.47.0 0 0 .84 2.45 2.86 2.86.0 0 0 2.21.91 4.14 4.14.0 0 0 2.19-.56z">
</path>
<path class="cls-4"
d="M30.21 49.89A2.78 2.78.0 0 1 28.08 49a3.11 3.11.0 0 1-.79-2.23 3.24 3.24.0 0 1 .83-2.36 3 3 0 0 1 2.23-.85 2.69 2.69.0 0 1 2.09.83 3.28 3.28.0 0 1 .75 2.29 3.22 3.22.0 0 1-.81 2.3A2.84 2.84.0 0 1 30.21 49.89zm.07-5.47a1.83 1.83.0 0 0-1.46.63 2.59 2.59.0 0 0-.54 1.74 2.45 2.45.0 0 0 .54 1.68 1.85 1.85.0 0 0 1.46.62 1.76 1.76.0 0 0 1.43-.6 2.62 2.62.0 0 0 .5-1.72 2.66 2.66.0 0 0-.5-1.73A1.75 1.75.0 0 0 30.28 44.42z">
</path>
<path class="cls-4"
d="M37.86 44.72a1.18 1.18.0 0 0-.73-.19 1.23 1.23.0 0 0-1 .58 2.68 2.68.0 0 0-.41 1.58v3.06h-1v-6h1V45h0a2.1 2.1.0 0 1 .63-1 1.43 1.43.0 0 1 .94-.35 1.57 1.57.0 0 1 .57.08z">
</path>
<path class="cls-4"
d="M43.72 47H39.49A2.24 2.24.0 0 0 40 48.54a1.86 1.86.0 0 0 1.42.54 3 3 0 0 0 1.86-.67v.9a3.48 3.48.0 0 1-2.09.57 2.54 2.54.0 0 1-2-.82 3.35 3.35.0 0 1-.73-2.3 3.28 3.28.0 0 1 .79-2.28 2.55 2.55.0 0 1 2-.88 2.26 2.26.0 0 1 1.82.76 3.18 3.18.0 0 1 .64 2.12zm-1-.81a2 2 0 0 0-.4-1.29 1.37 1.37.0 0 0-1.1-.46 1.55 1.55.0 0 0-1.15.49 2.21 2.21.0 0 0-.59 1.27z">
</path>
</svg></span>
</div>
</div>
<div class="col col-lg-6">
<div class="fakeMenu flex p-2">
<div class="fakeButtons fakeClose border-r-2 p-2"></div>
<div class="fakeButtons fakeMinimize border-r-2 p-2 ml-2"></div>
<div class="fakeButtons fakeZoom p-2 ml-2"></div>
</div>
<div class="fakeScreen">
<p class="line1">$ brew install jenkins-x/jx<span class="cursor1">_</span></p>
<p class="line2">$ jx version --short<span class="cursor2">_</span></p>
<p class="line3">[?] Want to upgrade CLI (Press space to select)<span class="cursor3">_</span></p>
<p class="line4">><span class="cursor4">_</span></p>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="deploy" role="tabpanel" aria-labelledby="deploy-tab">
<div class="row">
<div class="col col-lg-6">
<p> </p>
<h1>Provision to cloud.</h1>
<p>Jenkins X supports EKS, GKE and AKS. You can even deploy on-premises Kubernetes cluster.</p>
<p>
Using the Terraform modules we have published, you can quickly provision you cluster with the default
settings.
<br/><br/>
<a class="btn btn-lg btn-success" href="/docs">Get Started</a>
</p>
<div class="inline-flex items-center bg-gray-200 rounded-lg p-2">
<span title="aws">
<svg class="h-8 ml-1 rounded" viewBox="0 0 118 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M33.2536 25.4227C33.2536 26.8632 33.4105 28.0312 33.6853 28.8877 33.9992 29.7442 34.3917 30.6785 34.9411 31.6908 35.1373 32.0022 35.2158 32.3137 35.2158 32.5862 35.2158 32.9755 34.9804 33.3649 34.4702 33.7542L31.9977 35.3893C31.6445 35.6229 31.2913 35.7397 30.9773 35.7397 30.5849 35.7397 30.1924 35.5451 29.8 35.1947 29.2505 34.6107 28.7796 33.9878 28.3871 33.3649 27.9947 32.703 27.6022 31.9633 27.1705 31.0679 24.1094 34.6496 20.2633 36.4405 15.6323 36.4405 12.3357 36.4405 9.70623 35.5061 7.7832 33.6374 5.86017 31.7686 4.87903 29.277 4.87903 26.1624 4.87903 22.8532 6.0564 20.1669 8.45037 18.1424 10.8444 16.1179 14.0232 15.1057 18.0655 15.1057 19.3999 15.1057 20.7735 15.2225 22.2256 15.4171 23.6776 15.6118 25.169 15.9233 26.7388 16.2736V13.4316C26.7388 10.4727 26.1109 8.40934 24.8943 7.20245 23.6384 5.99555 21.5191 5.41157 18.4972 5.41157 17.1236 5.41157 15.7108 5.5673 14.2587 5.91769 12.8066 6.26808 11.3938 6.69633 10.0202 7.24138 9.39227 7.51391 8.92132 7.66963 8.6466 7.7475 8.37188 7.82536 8.17565 7.86429 8.01867 7.86429 7.46923 7.86429 7.19452 7.47497 7.19452 6.6574V4.74972C7.19452 4.12681 7.27301 3.65962 7.46923 3.3871 7.66546 3.11457 8.01867 2.84205 8.56811 2.56952 9.9417 1.86874 11.59 1.28476 13.513.817575 15.4361.311457 17.4768.0778643 19.6354.0778643 24.3056.0778643 27.7199 1.12903 29.9177 3.23137 32.0762 5.3337 33.1751 8.52614 33.1751 12.8087V25.4227H33.2536zM17.3199 31.3404C18.615 31.3404 19.9493 31.1068 21.3622 30.6396 22.775 30.1724 24.0309 29.3159 25.0905 28.1479 25.7184 27.4082 26.1894 26.5907 26.4248 25.6563 26.6603 24.7219 26.8173 23.5929 26.8173 22.2692V20.634C25.6792 20.3615 24.4626 20.1279 23.2067 19.9722 21.9508 19.8165 20.7342 19.7386 19.5176 19.7386 16.8882 19.7386 14.9651 20.2447 13.67 21.2959 12.3749 22.3471 11.747 23.8265 11.747 25.7731 11.747 27.6029 12.2179 28.9655 13.1991 29.8999 14.141 30.8732 15.5146 31.3404 17.3199 31.3404zM48.834 35.5451C48.1276 35.5451 47.6567 35.4283 47.3427 35.1557 47.0288 34.9221 46.754 34.3771 46.5186 33.6374L37.2959 3.54283C37.0604 2.76418 36.9426 2.25806 36.9426 1.98554 36.9426 1.36263 37.2566 1.01224 37.8845 1.01224h3.8461C42.4763 1.01224 42.9865 1.12903 43.2612 1.40156 43.5751 1.63515 43.8106 2.1802 44.0461 2.91991L50.6393 28.693 56.7616 2.91991C56.9579 2.14127 57.1933 1.63515 57.5073 1.40156 57.8213 1.16796 58.3707 1.01224 59.0771 1.01224H62.2168C62.9624 1.01224 63.4726 1.12903 63.7866 1.40156 64.1006 1.63515 64.3753 2.1802 64.5323 2.91991L70.7331 29.0045 77.5225 2.91991C77.758 2.14127 78.0327 1.63515 78.3074 1.40156 78.6214 1.16796 79.1316 1.01224 79.838 1.01224H83.4879C84.1158 1.01224 84.469 1.32369 84.469 1.98554 84.469 2.1802 84.4298 2.37486 84.3905 2.60845 84.3513 2.84205 84.2728 3.1535 84.1158 3.58176L74.6576 33.6763C74.4221 34.455 74.1474 34.9611 73.8335 35.1947 73.5195 35.4283 73.0093 35.584 72.3421 35.584H68.967C68.2213 35.584 67.7112 35.4672 67.3972 35.1947 67.0832 34.9221 66.8085 34.416 66.6515 33.6374L60.5685 8.52614 54.5247 33.5984C54.3284 34.3771 54.0929 34.8832 53.779 35.1557 53.465 35.4283 52.9156 35.5451 52.2092 35.5451H48.834zM99.2646 36.5962C97.2238 36.5962 95.183 36.3626 93.2208 35.8954 91.2585 35.4283 89.7279 34.9221 88.7075 34.3382 88.0796 33.9878 87.6479 33.5984 87.4909 33.2481 87.3339 32.8977 87.2554 32.5083 87.2554 32.158V30.1724C87.2554 29.3548 87.5694 28.9655 88.1581 28.9655 88.3936 28.9655 88.629 29.0045 88.8645 29.0823 89.1 29.1602 89.4532 29.3159 89.8456 29.4716 91.18 30.0556 92.6321 30.5228 94.1627 30.8343 95.7325 31.1457 97.2631 31.3014 98.8329 31.3014 101.305 31.3014 103.228 30.8732 104.563 30.0167 105.897 29.1602 106.603 27.9144 106.603 26.3181 106.603 25.228 106.25 24.3326 105.544 23.5929 104.837 22.8532 103.503 22.1913 101.58 21.5684L95.8895 19.8165C93.0245 18.921 90.9053 17.5973 89.6102 15.8454 88.3151 14.1324 87.6479 12.2247 87.6479 10.2002 87.6479 8.56507 88.0011 7.12458 88.7075 5.87876 89.4139 4.63293 90.3558 3.54283 91.5332 2.68632 92.7106 1.79088 94.0449 1.12903 95.6147.661847 97.1846.194661 98.8329.0 100.56.0 101.423.0 102.326.0389321 103.189.155729 104.092.272525 104.916.428254 105.74.583982 106.525.778643 107.271.973304 107.977 1.2069 108.684 1.44049 109.233 1.67408 109.625 1.90768 110.175 2.21913 110.567 2.53059 110.803 2.88098 111.038 3.19244 111.156 3.62069 111.156 4.16574V5.99555C111.156 6.81313 110.842 7.24138 110.253 7.24138 109.939 7.24138 109.429 7.08565 108.762 6.77419 106.525 5.76196 104.013 5.25584 101.227 5.25584 98.9899 5.25584 97.2238 5.60623 96.0072 6.34594 94.7906 7.08565 94.1627 8.21468 94.1627 9.8109 94.1627 10.901 94.5551 11.8354 95.34 12.5751 96.1249 13.3148 97.577 14.0545 99.657 14.7164L105.23 16.4683C108.056 17.3637 110.096 18.6096 111.313 20.2058 112.53 21.802 113.118 23.6318 113.118 25.6563 113.118 27.3304 112.765 28.8487 112.098 30.1724 111.391 31.4961 110.45 32.6641 109.233 33.5984 108.016 34.5718 106.564 35.2725 104.877 35.7786 103.111 36.3237 101.266 36.5962 99.2646 36.5962z"
fill="#252f3e"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M106.682 55.5172C93.7702 64.9778 75.0108 70 58.8809 70 36.2755 70 15.907 61.7075.522757 47.9255-.693855 46.8354.405021 45.356 1.85711 46.2125 18.4972 55.7898 39.0226 61.5907 60.2545 61.5907 74.5791 61.5907 90.3166 58.6318 104.798 52.5584 106.957 51.5851 108.801 53.96 106.682 55.5172z"
fill="#f90"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M112.059 49.4438C110.41 47.3415 101.148 48.4316 96.9491 48.9377 95.6932 49.0934 95.497 48.0033 96.6351 47.1858 104.013 42.0467 116.14 43.5261 117.553 45.2392 118.966 46.9911 117.161 59.0211 110.253 64.7831 109.194 65.6785 108.173 65.2114 108.644 64.0434 110.214 60.1891 113.707 51.5072 112.059 49.4438z"
fill="#f90"></path>
</svg>
</span>
<span title="azure">
<svg class="mr-3 h-8" viewBox="0 0 90 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M41.4672 65.3112 62.6084 61.5999 62.8042 61.5546 51.933 48.7006C48.2894 44.4129 44.6656 40.1085 41.0618 35.7877 41.0618 35.7243 52.2882 5.00131 52.352 4.89269 52.3702 4.85648 60.0124 17.964 70.8699 36.6657L89.4971 68.7556 89.6383 69 55.0846 68.9955 20.5309 68.9909 41.4672 65.3158V65.3112zM0 61.3962C0 61.3781 5.12362 52.5387 11.3858 41.753L22.7716 22.1461 36.0384 11.0798C43.3344 4.99679 49.3234.00905215 49.3507.0 49.3019.186165 49.23.365571 49.1367.534077L34.7268 31.2435 20.5765 61.4007 10.2882 61.4143C4.63175 61.4234.0 61.4143.0 61.3962z"
fill="#0089d6"></path>
<path
d="M62.6084 61.5999 41.4672 65.3112V65.3158L20.5309 68.9909 55.0846 68.9955 89.6383 69 89.4971 68.7556 70.8699 36.6657C60.0124 17.964 52.3702 4.85647 52.352 4.89268 52.2882 5.0013 41.0618 35.7243 41.0618 35.7877 44.6656 40.1085 48.2894 44.4129 51.933 48.7006L62.8042 61.5546 62.6084 61.5999z"
fill="#0089d6"></path>
<path
d="M11.3858 41.753C5.12362 52.5387.0 61.3781.0 61.3962.0 61.4143 4.63175 61.4234 10.2882 61.4143L20.5765 61.4007 34.7268 31.2435 49.1367.534077C49.23.365571 49.3019.186165 49.3507.0 49.3234.00905215 43.3344 4.99679 36.0384 11.0798L22.7716 22.1461 11.3858 41.753z"
fill="#0089d6"></path>
</svg>
</span>
<span title="gcp">
<svg class="mr-3 h-8" viewBox="0 0 88 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M55.6361 19.6663H58.3103L65.9318 11.9524 66.3062 8.67733C61.9401 4.77692 56.6637 2.06744 50.9754.804839 45.287-.457761 39.3746-.231798 33.7965 1.46138 28.2185 3.15456 23.159 6.25906 19.0959 10.4816 15.0329 14.7042 12.1005 19.9054 10.5757 25.5939 11.4248 25.2417 12.3653 25.1846 13.2499 25.4315L28.4929 22.8873C28.4929 22.8873 29.2684 21.5881 29.6695 21.6693 32.9356 18.0387 37.4493 15.8091 42.2865 15.4367 47.1237 15.0644 51.9186 16.5775 55.6896 19.6663H55.6361z"
fill="#ea4335"></path>
<path
d="M76.7891 25.594C75.0373 19.0645 71.4404 13.1946 66.4399 8.70444L55.7431 19.5311C57.9724 21.3747 59.759 23.7067 60.968 26.3511 62.1771 28.9955 62.7771 31.8833 62.7228 34.7966V36.7183C65.2477 36.7183 67.6692 37.7335 69.4545 39.5405 71.2399 41.3476 72.2429 43.7985 72.2429 46.354 72.2429 48.9096 71.2399 51.3604 69.4545 53.1675 67.6692 54.9745 65.2477 55.9897 62.7228 55.9897H43.6824L41.7837 57.9385V69.4959L43.6824 71.4176H62.7228C68.0397 71.4595 73.2288 69.7682 77.5224 66.5938 81.816 63.4193 84.9861 58.9305 86.5636 53.7912 88.1412 48.6519 88.0426 43.1351 86.2822 38.057 84.5219 32.9788 81.1934 28.609 76.7891 25.594z"
fill="#4285f4"></path>
<path
d="M24.6153 71.3093H43.6557V55.8814H24.6153C23.2587 55.8811 21.9181 55.5857 20.6842 55.0153L18.01 55.8543 10.335 63.5683 9.66644 66.2749C13.9704 69.5644 19.2221 71.333 24.6153 71.3093z"
fill="#34a853"></path>
<path
d="M24.6153 21.2632C19.4562 21.2944 14.4356 22.9557 10.2547 26.015 6.07383 29.0743 2.94138 33.379 1.29491 38.3276-.351561 43.2763-.429833 48.6218 1.07103 53.6177 2.57189 58.6136 5.57693 63.0103 9.66643 66.1937L20.7109 55.0152C19.3074 54.3734 18.0787 53.3965 17.1301 52.1684 16.1816 50.9403 15.5417 49.4976 15.2651 47.9641 14.9886 46.4307 15.0838 44.8522 15.5425 43.3641 16.0012 41.8761 16.8098 40.5229 17.8988 39.4206 18.9879 38.3184 20.3248 37.5 21.7951 37.0357 23.2653 36.5714 24.8248 36.4751 26.3399 36.755 27.855 37.0349 29.2804 37.6826 30.4938 38.6426 31.7072 39.6026 32.6723 40.8463 33.3064 42.2668L44.3509 31.0883C42.0328 28.0211 39.045 25.5381 35.6213 23.8336 32.1976 22.1292 28.4307 21.2494 24.6153 21.2632z"
fill="#fbbc05"></path>
</svg>
</span>
<span title="SAMLSSO">
<svg class="mr-3 h-8" viewBox="0 0 70 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M63.2814 15.1236C62.8849 13.8365 61.9333 12.7907 60.7438 12.1471L36.5565.402223C35.922.0804445 35.2083.0 34.5739.0 33.9395.0 33.2258.0 32.5913.160889L8.40404 11.9862C7.2145 12.5493 6.34217 13.5951 6.02496 14.9627L.0772692 41.4289C-.160639 42.7965.156572 44.164.949598 45.2903L17.6824 66.2863C18.6341 67.2516 19.9822 67.8952 21.3304 67.9756H47.976C49.4035 68.1365 50.7516 67.493 51.624 66.2863L68.3568 45.2903C69.1498 44.164 69.467 42.7965 69.3084 41.4289L63.2814 15.1236z"
fill="#326de6"></path>
<path
d="M59.5542 40.3832C59.4749 40.3832 59.3956 40.3832 59.3956 40.3027 59.3956 40.2223 59.237 40.2223 59.0784 40.2223 58.7612 40.1418 58.444 40.1418 58.1268 40.1418 57.9682 40.1418 57.8096 40.1418 57.6509 40.0614H57.5716C56.6993 39.9809 55.7477 39.8201 54.8754 39.5787 54.6374 39.4983 54.3995 39.2569 54.3202 39.0156c.07930000000000348.0.0.0.0.0L53.6858 38.8547C54.003 36.5218 53.8444 34.1085 53.3686 31.7756 52.8135 29.4427 51.8619 27.1903 50.593 25.1791L51.0688 24.6965V24.616C51.0688 24.3747 51.1481 24.0529 51.3067 23.892 52.0205 23.2485 52.7342 22.7658 53.5272 22.2831L54.003 22.0418C54.3202 21.8809 54.5581 21.72 54.8754 21.5591 54.9547 21.4787 55.034 21.4787 55.1133 21.3983 55.1926 21.3178 55.1133 21.3178 55.1133 21.2374 55.827 20.6743 55.9856 19.7089 55.4305 18.9849 55.1926 18.6631 54.7168 18.4218 54.3202 18.4218 53.9237 18.4218 53.5272 18.5827 53.21 18.824L53.1307 18.9045C53.0514 18.9849 52.9721 19.0654 52.8928 19.0654 52.6549 19.3067 52.417 19.548 52.2584 19.7894 52.1791 19.9503 52.0205 20.0307 51.9412 20.1111 51.386 20.7547 50.6723 21.3983 49.9586 21.8809 49.8 21.9614 49.6414 22.0418 49.4828 22.0418 49.4035 22.0418 49.2449 22.0418 49.1656 21.9614H49.0863L48.4518 22.3636C47.8174 21.72 47.1037 21.0765 46.4693 20.4329 43.5351 18.1 39.8872 16.652 36.1599 16.2498L36.0806 15.6063V15.6867C35.8427 15.5258 35.7634 15.2845 35.6841 15.0431 35.6841 14.1582 35.6841 13.2734 35.8427 12.308V12.2276C35.8427 12.0667 35.922 11.9058 35.922 11.7449 36.0013 11.4231 36.0013 11.1014 36.0806 10.7796V10.2969C36.1599 9.49247 35.5255 8.68802 34.7325 8.60758 34.2567 8.52713 33.7809 8.76847 33.3844 9.17069 33.0671 9.49247 32.9085 9.89469 32.9085 10.2969V10.6991C32.9085 11.0209 32.9878 11.3427 33.0671 11.6645 33.1464 11.8254 33.1464 11.9862 33.1464 12.1471V12.2276C33.3051 13.1125 33.3051 13.9974 33.3051 14.9627 33.2257 15.204 33.1464 15.4454 32.9085 15.6063V15.7671L32.8292 16.4107C31.9569 16.4911 31.0846 16.652 30.1329 16.8129 26.4057 17.6174 22.9957 19.6285 20.3787 22.444L19.9029 22.1223H19.8236C19.7443 22.1223 19.665 22.2027 19.5064 22.2027 19.3478 22.2027 19.1892 22.1223 19.0306 22.0418 18.3169 21.4787 17.6031 20.8351 17.048 20.1916 16.9687 20.0307 16.8101 19.9503 16.7308 19.8698 16.4929 19.6285 16.3343 19.3871 16.0964 19.1458 16.0171 19.0654 15.9378 19.0654 15.8585 18.9849L15.7792 18.9045C15.462 18.6631 15.0655 18.5023 14.6689 18.5023 14.1931 18.5023 13.7966 18.6631 13.5587 19.0654 13.0829 19.7894 13.2415 20.7547 13.8759 21.3178 13.9552 21.3178 13.9552 21.3983 13.9552 21.3983 13.9552 21.3983 14.1138 21.5591 14.1931 21.5591 14.431 21.72 14.7482 21.8809 15.0655 22.0418L15.5413 22.2831C16.3343 22.7658 17.1273 23.2485 17.7617 23.892 17.9203 24.0529 18.079 24.3747 17.9997 24.616V24.5356L18.4755 25.0183C18.3962 25.1791 18.3169 25.2596 18.2376 25.4205 15.7792 29.3623 14.7482 34.028 15.462 38.6134L14.8275 38.7743C14.8275 38.8547 14.7482 38.8547 14.7482 38.8547 14.6689 39.0961 14.431 39.2569 14.1931 39.4178 13.3208 39.6592 12.4485 39.8201 11.4968 39.9005 11.3382 39.9005 11.1796 39.9005 11.021 39.9809 10.7038 39.9809 10.3866 40.0614 10.0694 40.0614 9.99009 40.0614 9.91079 40.1418 9.75218 40.1418 9.67288 40.1418 9.67288 40.1418 9.59358 40.2223 8.72125 40.3832 8.16613 41.1876 8.32473 42.0725 8.48334 42.7965 9.19706 43.2792 9.91079 43.1987 10.0694 43.1987 10.1487 43.1987 10.3073 43.1183 10.3866 43.1183 10.3866 43.1183 10.3866 43.0378 10.3866 42.9574 10.6245 43.0378 10.7038 43.0378 11.021 42.9574 11.3382 42.7965 11.5761 42.7161 11.7347 42.6356 11.8934 42.5552 12.052 42.5552H12.1313C13.0036 42.2334 13.7966 41.9921 14.7482 41.8312H14.8275C15.0655 41.8312 15.3034 41.9116 15.462 42.0725 15.5413 42.0725 15.5413 42.1529 15.5413 42.1529L16.255 42.0725C17.4445 45.7729 19.665 49.0712 22.7578 51.4845 23.4715 52.0476 24.106 52.5303 24.899 52.9325L24.5025 53.4956C24.5025 53.5761 24.5818 53.5761 24.5818 53.5761 24.7404 53.8174 24.7404 54.1392 24.6611 54.3805 24.3439 55.185 23.868 55.9894 23.3922 56.7134V56.7938C23.3129 56.9547 23.2336 57.0352 23.075 57.1961 22.9164 57.357 22.7578 57.6787 22.5199 58.0005 22.4406 58.081 22.4406 58.1614 22.3613 58.2419 22.3613 58.2419 22.3613 58.3223 22.282 58.3223 21.8855 59.1267 22.2027 60.0921 22.9164 60.4943 23.075 60.5747 23.3129 60.6552 23.4715 60.6552 24.106 60.6552 24.6611 60.253 24.9783 59.6898 24.9783 59.6898 24.9783 59.6094 25.0576 59.6094 25.0576 59.529 25.1369 59.4485 25.2162 59.3681 25.2955 59.0463 25.4541 58.805 25.5334 58.4832L25.692 58.0005C25.9299 57.1156 26.3264 56.3112 26.7229 55.5067 26.8815 55.2654 27.1195 55.1045 27.3574 55.0241 27.4367 55.0241 27.4367 55.0241 27.4367 54.9436L27.7539 54.3001C29.9743 55.185 32.2741 55.5872 34.6532 55.5872 36.0806 55.5872 37.5081 55.4263 38.9355 55.0241 39.8079 54.8632 40.6802 54.5414 41.4732 54.3001L41.7904 54.8632C41.8697 54.8632 41.8697 54.8632 41.8697 54.9436 42.1076 55.0241 42.3455 55.185 42.5042 55.4263 42.9007 56.2307 43.2972 57.0352 43.5351 57.9201V58.0005L43.6937 58.4832C43.773 58.805 43.8523 59.1267 44.0109 59.3681 44.0902 59.4485 44.0902 59.529 44.1695 59.6094 44.1695 59.6094 44.1695 59.6898 44.2488 59.6898 44.566 60.253 45.1211 60.6552 45.7556 60.6552 45.9935 60.6552 46.1521 60.5747 46.39 60.4943 46.7072 60.3334 47.0244 60.0116 47.1037 59.6094 47.183 59.2072 47.183 58.805 47.0244 58.4027 47.0244 58.3223 46.9451 58.3223 46.9451 58.3223 46.9451 58.2418 46.8658 58.1614 46.7865 58.081 46.6279 57.7592 46.4693 57.5178 46.2314 57.2765 46.1521 57.1156 46.0728 57.0352 45.9142 56.8743V56.7134C45.359 55.9894 44.9625 55.185 44.6453 54.3805 44.566 54.1392 44.566 53.8174 44.7246 53.5761 44.7246 53.4956 44.8039 53.4956 44.8039 53.4956L44.566 52.8521C48.6104 50.3583 51.7033 46.4969 53.1307 41.9116L53.7651 41.9921C53.8444 41.9921 53.8444 41.9116 53.8444 41.9116 54.003 41.7507 54.2409 41.6703 54.4788 41.6703H54.5581C55.4305 41.8312 56.3028 42.0725 57.0958 42.3943H57.1751C57.3337 42.4747 57.4923 42.5552 57.6509 42.5552 57.9682 42.7161 58.2061 42.8769 58.5233 42.9574 58.6026 42.9574 58.6819 43.0378 58.8405 43.0378 58.9198 43.0378 58.9198 43.0378 58.9991 43.1183 59.1577 43.1987 59.237 43.1987 59.3956 43.1987 60.1093 43.1987 60.7438 42.7161 60.9817 42.0725 60.9024 41.1876 60.2679 40.5441 59.5542 40.3832zM36.6358 37.8894 34.4946 38.9352 32.3534 37.8894 31.7983 35.5565 33.3051 33.6258H35.6841L37.1909 35.5565 36.6358 37.8894zM49.5621 32.6605C49.9586 34.3498 50.0379 36.0392 49.8793 37.7285L42.3455 35.5565C41.6318 35.3956 41.2353 34.6716 41.3939 33.9476 41.4732 33.7063 41.5525 33.5454 41.7111 33.3845L47.6588 27.9143C48.5311 29.3623 49.1656 30.9712 49.5621 32.6605zM45.2797 24.9378 38.7769 29.6036C38.2218 29.9254 37.4288 29.8449 37.0323 29.2818 36.8737 29.1209 36.7944 28.96 36.7944 28.7187L36.3185 20.5938C39.8079 20.996 42.9007 22.5245 45.2797 24.9378zM30.926 20.8351 32.512 20.5134 32.1155 28.5578C32.1155 29.2818 31.4811 29.8449 30.7674 29.8449 30.5295 29.8449 30.3709 29.7645 30.1329 29.684L23.5508 24.9378C25.6127 22.9267 28.1504 21.4787 30.926 20.8351zM21.2511 27.9143 27.1194 33.2236C27.6746 33.7063 27.7539 34.5107 27.2781 35.0738 27.1194 35.3152 26.9608 35.3956 26.6436 35.476L18.9513 37.7285C18.7134 34.3498 19.5064 30.8907 21.2511 27.9143zM19.9029 41.5094 27.7539 40.1418C28.3883 40.1418 29.0227 40.5441 29.102 41.1876 29.1813 41.4289 29.1813 41.7507 29.0227 41.9921L26.0092 49.393C23.2336 47.5427 21.0131 44.7272 19.9029 41.5094zM37.9046 51.4845C36.7944 51.7258 35.6841 51.8867 34.4946 51.8867 32.8292 51.8867 31.0846 51.565 29.4985 51.0823L33.3844 43.9227C33.7809 43.4401 34.4153 43.2792 34.9704 43.6009 35.2083 43.7618 35.3669 43.9227 35.6048 44.1641L39.4113 51.1627C38.9355 51.2432 38.4597 51.3236 37.9046 51.4845zM47.5795 44.4858C46.39 46.4165 44.7246 48.1058 42.8214 49.3125L39.7286 41.7507C39.57 41.1072 39.8872 40.4636 40.4423 40.2223 40.6802 40.1418 40.9181 40.0614 41.156 40.0614L49.0863 41.4289C48.6898 42.5552 48.2139 43.6009 47.5795 44.4858z"
fill="#fff"></path>
</svg>
</span>
</div>
</div>
<div class="col col-lg-6">
<div class="fakeMenu flex p-2">
<div class="fakeButtons fakeClose border-r-2 p-2"></div>
<div class="fakeButtons fakeMinimize border-r-2 p-2 ml-2"></div>
<div class="fakeButtons fakeZoom p-2 ml-2"></div>
</div>
<div class="fakeScreen">
<p class="line1">$ terraform init<span class="cursor1">_</span></p>
<p class="line2">$ terraform apply<span class="cursor2">_</span></p>
<p class="line3">$ jx boot \ <br>-r jx-requirements.yml<span class="cursor3">_</span></p>
<p class="line4">><span class="cursor4">_</span></p>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="quickstart" role="tabpanel" aria-labelledby="quickstart-tab">
<div class="row">
<div class="col col-lg-6">
<p> </p>
<h1>Create a QuickStart</h1>
<p>Jenkins X comes with <strong>QuickStarts</strong>, predefined templates for your language of preference!</p>
<div class="inline-flex items-center bg-gray-200 rounded-lg p-2">
<span title="JavaScript">
<svg
class="h-8 ml-1 rounded" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0H1e2V1e2H0V0z" fill="#f7df1e"></path>
<path
d="M26.2938 83.5672 33.9461 78.9359C35.4227 81.5535 36.7656 83.7684 39.9871 83.7684 43.075 83.7684 45.0223 82.5606 45.0223 77.8621V45.9098H54.4195V77.9949C54.4195 87.7281 48.7141 92.1586 40.3899 92.1586 32.8723 92.1586 28.5086 88.2652 26.2934 83.5664L26.2938 83.5672zM59.5238 82.5602 67.1754 78.1301C69.1898 81.4195 71.8078 83.8359 76.4391 83.8359 80.3332 83.8359 82.816 81.8891 82.816 79.2039 82.816 75.982 80.2652 74.8406 75.9692 72.9617L73.6203 71.9539C66.8402 69.0684 62.343 65.4434 62.343 57.791 62.343 50.7426 67.7129 45.3723 76.1039 45.3723 82.0781 45.3723 86.3742 47.4535 89.4617 52.8906L82.1445 57.5899C80.5332 54.7035 78.7887 53.5625 76.1035 53.5625 73.3512 53.5625 71.6059 55.3078 71.6059 57.5899 71.6059 60.409 73.3512 61.5508 77.3785 63.2961L79.7277 64.3027C87.716 67.7266 92.2133 71.2168 92.2133 79.0699 92.2133 87.5285 85.568 92.1598 76.6402 92.1598 67.9141 92.1598 62.2754 87.9981 59.5234 82.5606"
fill="#000"></path>
</svg></span>
<span title="TypeScript">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-4 h-8 rounded" viewBox="0 0 505 305">
<defs>
<clipPath id="a">
<path
d="M239.03 226.605l-42.13 24.317c-1.578.91-2.546 2.59-2.546 4.406v48.668c0 1.817.968 3.496 2.546 4.406l42.133 24.336c1.575.907 3.517.907 5.09 0l42.126-24.336c1.57-.91 2.54-2.59 2.54-4.406v-48.668c0-1.816-.97-3.496-2.55-4.406l-42.12-24.317c-.79-.453-1.67-.68-2.55-.68-.88 0-1.76.227-2.55.68" />
</clipPath>
<linearGradient id="b" x1="-.348" x2="1.251" gradientTransform="rotate(116.114 53.1 202.97) scale(86.48)"
gradientUnits="userSpaceOnUse">
<stop offset=".3" stop-color="#3E863D" />
<stop offset=".5" stop-color="#55934F" />
<stop offset=".8" stop-color="#5AAD45" />
</linearGradient>
<clipPath id="c">
<path
d="M195.398 307.086c.403.523.907.976 1.5 1.316l36.14 20.875 6.02 3.46c.9.52 1.926.74 2.934.665.336-.027.672-.09 1-.183l44.434-81.36c-.34-.37-.738-.68-1.184-.94l-27.586-15.93-14.582-8.39c-.414-.24-.863-.41-1.32-.53zm0 0" />
</clipPath>
<linearGradient id="d" x1="-.456" x2=".582"
gradientTransform="rotate(-36.46 550.846 -214.337) scale(132.798)" gradientUnits="userSpaceOnUse">
<stop offset=".57" stop-color="#3E863D" />
<stop offset=".72" stop-color="#619857" />
<stop offset="1" stop-color="#76AC64" />
</linearGradient>
<clipPath id="e">
<path
d="M241.066 225.953c-.707.07-1.398.29-2.035.652l-42.01 24.247 45.3 82.51c.63-.09 1.25-.3 1.81-.624l42.13-24.336c1.3-.754 2.19-2.03 2.46-3.476l-46.18-78.89c-.34-.067-.68-.102-1.03-.102-.14 0-.28.007-.42.02" />
</clipPath>
<linearGradient id="f" x1=".043" x2=".984" gradientTransform="translate(192.862 279.652) scale(97.417)"
gradientUnits="userSpaceOnUse">
<stop offset=".16" stop-color="#6BBF47" />
<stop offset=".38" stop-color="#79B461" />
<stop offset=".47" stop-color="#75AC64" />
<stop offset=".7" stop-color="#659E5A" />
<stop offset=".9" stop-color="#3E863D" />
</linearGradient>
</defs>
<path fill="#689f63"
d="M218.647 270.93c-1.46 0-2.91-.383-4.19-1.12l-13.337-7.896c-1.992-1.114-1.02-1.508-.363-1.735 2.656-.93 3.195-1.14 6.03-2.75.298-.17.688-.11.993.07l10.246 6.08c.37.2.895.2 1.238 0l39.95-23.06c.37-.21.61-.64.61-1.08v-46.1c0-.46-.24-.87-.618-1.1l-39.934-23.04c-.37-.22-.86-.22-1.23 0l-39.926 23.04c-.387.22-.633.65-.633 1.09v46.1c0 .44.24.86.62 1.07l10.94 6.32c5.94 2.97 9.57-.53 9.57-4.05v-45.5c0-.65.51-1.15 1.16-1.15h5.06c.63 0 1.15.5 1.15 1.15v45.52c0 7.92-4.32 12.47-11.83 12.47-2.31 0-4.13 0-9.21-2.5l-10.48-6.04c-2.59-1.5-4.19-4.3-4.19-7.29v-46.1c0-3 1.6-5.8 4.19-7.28l39.99-23.07c2.53-1.43 5.89-1.43 8.4 0l39.94 23.08c2.58 1.49 4.19 4.28 4.19 7.28v46.1c0 2.99-1.61 5.78-4.19 7.28l-39.94 23.07c-1.28.74-2.73 1.12-4.21 1.12" />
<path fill="#689f63"
d="M230.987 239.164c-17.48 0-21.145-8.024-21.145-14.754 0-.64.516-1.15 1.157-1.15h5.16c.57 0 1.05.415 1.14.978.78 5.258 3.1 7.91 13.67 7.91 8.42 0 12-1.902 12-6.367 0-2.57-1.02-4.48-14.1-5.76-10.94-1.08-17.7-3.49-17.7-12.24 0-8.06 6.8-12.86 18.19-12.86 12.79 0 19.13 4.44 19.93 13.98.03.33-.09.65-.31.89-.22.23-.53.37-.85.37h-5.19c-.54 0-1.01-.38-1.12-.9-1.25-5.53-4.27-7.3-12.48-7.3-9.19 0-10.26 3.2-10.26 5.6 0 2.91 1.26 3.76 13.66 5.4 12.28 1.63 18.11 3.93 18.11 12.56 0 8.7-7.26 13.69-19.92 13.69m48.66-48.89h1.34c1.1 0 1.31-.77 1.31-1.22 0-1.18-.81-1.18-1.26-1.18h-1.38zm-1.63-3.78h2.97c1.02 0 3.02 0 3.02 2.28 0 1.59-1.02 1.92-1.63 2.12 1.19.08 1.27.86 1.43 1.96.08.69.21 1.88.45 2.28h-1.83c-.05-.4-.33-2.6-.33-2.72-.12-.49-.29-.73-.9-.73h-1.51v3.46h-1.67zm-3.57 4.3c0 3.58 2.89 6.48 6.44 6.48 3.58 0 6.47-2.96 6.47-6.48 0-3.59-2.93-6.44-6.48-6.44-3.5 0-6.44 2.81-6.44 6.43m14.16.03c0 4.24-3.47 7.7-7.7 7.7-4.2 0-7.7-3.42-7.7-7.7 0-4.36 3.58-7.7 7.7-7.7 4.15 0 7.69 3.35 7.69 7.7" />
<path fill="#333" fill-rule="evenodd"
d="M94.936 90.55c0-1.84-.97-3.53-2.558-4.445l-42.356-24.37c-.715-.42-1.516-.64-2.328-.67h-.438c-.812.03-1.613.25-2.34.67L2.562 86.105C.984 87.025 0 88.715 0 90.555l.093 65.64c0 .91.47 1.76 1.27 2.21.78.48 1.76.48 2.54 0l25.18-14.42c1.59-.946 2.56-2.618 2.56-4.44V108.88c0-1.83.97-3.52 2.555-4.43l10.72-6.174c.796-.46 1.67-.688 2.56-.688.876 0 1.77.226 2.544.687l10.715 6.172c1.586.91 2.56 2.6 2.56 4.43v30.663c0 1.82.983 3.5 2.565 4.44l25.164 14.41c.79.47 1.773.47 2.56 0 .776-.45 1.268-1.3 1.268-2.21zm199.868 34.176c0 .457-.243.88-.64 1.106l-14.548 8.386c-.395.227-.883.227-1.277 0l-14.55-8.386c-.4-.227-.64-.65-.64-1.106V107.93c0-.458.24-.88.63-1.11l14.54-8.4c.4-.23.89-.23 1.29 0l14.55 8.4c.4.23.64.652.64 1.11zM298.734.324c-.794-.442-1.76-.43-2.544.027-.78.46-1.262 1.3-1.262 2.21v65c0 .64-.34 1.23-.894 1.55-.55.32-1.235.32-1.79 0L281.634 63c-1.58-.914-3.526-.914-5.112 0l-42.37 24.453c-1.583.91-2.56 2.6-2.56 4.42v48.92c0 1.83.977 3.51 2.56 4.43l42.37 24.47c1.582.91 3.53.91 5.117 0l42.37-24.48c1.58-.92 2.56-2.6 2.56-4.43V18.863c0-1.856-1.01-3.563-2.63-4.47zm141.093 107.164c1.574-.914 2.543-2.602 2.543-4.422V91.21c0-1.824-.97-3.507-2.547-4.425l-42.1-24.44c-1.59-.92-3.54-.92-5.13 0l-42.36 24.45c-1.59.92-2.56 2.6-2.56 4.43v48.9c0 1.84.99 3.54 2.58 4.45l42.09 23.99c1.55.89 3.45.9 5.02.03l25.46-14.15c.8-.45 1.31-1.3 1.31-2.22 0-.92-.49-1.78-1.29-2.23l-42.62-24.46c-.8-.45-1.29-1.3-1.29-2.21v-15.34c0-.916.48-1.76 1.28-2.216l13.26-7.65c.79-.46 1.76-.46 2.55 0l13.27 7.65c.79.45 1.28 1.3 1.28 2.21v12.06c0 .91.49 1.76 1.28 2.22.79.45 1.77.45 2.56-.01zm0 0" />
<path fill="#689f63" fill-rule="evenodd"
d="M394.538 105.2c.3-.177.676-.177.98 0l8.13 4.69c.304.176.49.5.49.85v9.39c0 .35-.186.674-.49.85l-8.13 4.69c-.304.177-.68.177-.98 0l-8.125-4.69c-.31-.176-.5-.5-.5-.85v-9.39c0-.35.18-.674.49-.85zm0 0" />
<g clip-path="url(#a)" transform="translate(-78.306 -164.016)">
<path fill="url(#b)" d="M331.363 246.793l-118.715-58.19-60.87 124.174L270.49 370.97zm0 0" />
</g>
<g clip-path="url(#c)" transform="translate(-78.306 -164.016)">
<path fill="url(#d)" d="M144.07 264.004l83.825 113.453 110.86-81.906-83.83-113.45zm0 0" />
</g>
<g clip-path="url(#e)" transform="translate(-78.306 -164.016)">
<path fill="url(#f)" d="M197.02 225.934v107.43h91.683v-107.43zm0 0" />
</g>
</svg></span>
<span title="Python">
<svg class="mr-3 h-8" viewBox="0 0 101 100" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M50.0246.0C24.4415.0 26.0389 11.0665 26.0389 11.0665L26.0673 22.5318H50.4807V25.974H16.3706C16.3706 25.974.0 24.122.0 49.8705.0 75.6197 14.2887 74.7066 14.2887 74.7066H22.8161V62.7579C22.8161 62.7579 22.3564 48.505 36.8767 48.505H61.0905C61.0905 48.505 74.6945 48.7243 74.6945 35.3901V13.3428C74.6945 13.3428 76.7607.0 50.0246.0zM36.563 7.71017C37.1399 7.70965 37.7112 7.82262 38.2443 8.0426 38.7774 8.26258 39.2618 8.58526 39.6697 8.99217 40.0777 9.39908 40.4012 9.88224 40.6217 10.414 40.8422 10.9458 40.9555 11.5157 40.955 12.0911 40.9555 12.6666 40.8422 13.2365 40.6217 13.7683 40.4012 14.3 40.0777 14.7832 39.6697 15.1901 39.2618 15.597 38.7774 15.9197 38.2443 16.1397 37.7112 16.3596 37.1399 16.4726 36.563 16.4721 35.9861 16.4726 35.4147 16.3596 34.8816 16.1397 34.3486 15.9197 33.8642 15.597 33.4562 15.1901 33.0483 14.7832 32.7248 14.3 32.5043 13.7683 32.2838 13.2365 32.1705 12.6666 32.171 12.0911 32.1705 11.5157 32.2838 10.9458 32.5043 10.414 32.7248 9.88224 33.0483 9.39908 33.4562 8.99217 33.8642 8.58526 34.3486 8.26258 34.8816 8.0426 35.4147 7.82262 35.9861 7.70965 36.563 7.71017z"
fill="url(#paint0_linear)"></path>
<path
d="M50.7511 1e2C76.3341 1e2 74.7368 88.9335 74.7368 88.9335L74.7084 77.4686H50.2945V74.0264H84.4046C84.4046 74.0264 100.775 75.8784 100.775 50.1291 100.775 24.3802 86.4865 25.2934 86.4865 25.2934H77.9591V37.2417C77.9591 37.2417 78.4188 51.4946 63.8985 51.4946H39.6847C39.6847 51.4946 26.0807 51.2753 26.0807 64.6099V86.6576C26.0807 86.6576 24.0149 1e2 50.7507 1e2H50.7511zM64.2126 92.2906C63.6357 92.2911 63.0644 92.1782 62.5313 91.9582 61.9982 91.7382 61.5138 91.4156 61.1059 91.0086 60.698 90.6017 60.3745 90.1186 60.1539 89.5868 59.9334 89.055 59.8202 88.4851 59.8207 87.9097 59.8201 87.3342 59.9333 86.7642 60.1538 86.2324 60.3743 85.7006 60.6978 85.2174 61.1058 84.8105 61.5137 84.4035 61.9981 84.0808 62.5312 83.8608 63.0643 83.6408 63.6357 83.5278 64.2126 83.5283 64.7895 83.5278 65.3609 83.6408 65.894 83.8607 66.4271 84.0807 66.9114 84.4034 67.3194 84.8103 67.7273 85.2172 68.0508 85.7004 68.2713 86.2321 68.4919 86.7639 68.6051 87.3338 68.6046 87.9093 68.6051 88.4847 68.4919 89.0547 68.2713 89.5864 68.0508 90.1182 67.7273 90.6013 67.3194 91.0082 66.9114 91.4152 66.4271 91.7378 65.894 91.9578 65.3609 92.1778 64.7895 92.2908 64.2126 92.2902V92.2906z"
fill="url(#paint1_linear)"></path>
<defs>
<linearGradient id="paint0_linear" x1="9.68446" y1="8.9944" x2="59.5016" y2="58.4384"
gradientUnits="userSpaceOnUse">
<stop stop-color="#387eb8"></stop>
<stop offset="1" stop-color="#366994"></stop>
</linearGradient>
<linearGradient id="paint1_linear" x1="40.3383" y1="40.6641" x2="93.8424" y2="91.3702"
gradientUnits="userSpaceOnUse">
<stop stop-color="#ffe052"></stop>
<stop offset="1" stop-color="#ffc331"></stop>
</linearGradient>
</defs>
</svg></span>
<span title="Go">
<svg class="h-8 mr-3" viewBox="0 0 200 75" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M15.0928 22.7088C14.7022 22.7088 14.6061 22.5127 14.8006 22.2202L16.8451 19.5815C17.0404 19.2882 17.5264 19.0929 17.9154 19.0929H52.6786C53.0693 19.0929 53.1654 19.3862 52.9708 19.6795L51.3146 22.2202C51.1193 22.5135 50.6333 22.8068 50.3412 22.8068L15.0912 22.7088H15.0928zM.389698 31.7009C-925616e-9 31.7009-.0970191 31.5049.0975117 31.2124L2.14204 28.5736C2.33735 28.2803 2.82329 28.0851 3.21235 28.0851H47.6162C48.0068 28.0851 48.2005 28.3784 48.1029 28.6716L47.324 31.0163C47.2263 31.4084 46.8372 31.6029 46.4474 31.6029L.389698 31.7009zM23.9545 40.6931C23.5639 40.6931 23.4678 40.3998 23.6623 40.1065L25.0256 37.663C25.2209 37.3697 25.61 37.0764 25.999 37.0764H45.474C45.8646 37.0764 46.0583 37.3697 46.0583 37.7602L45.863 40.1049C45.863 40.497 45.4724 40.7887 45.1818 40.7887L23.9537 40.6907 23.9545 40.6931zM125.032 20.9491 108.671 25.2495C107.21 25.6416 107.113 25.7381 105.846 24.2724 104.386 22.61 103.315 21.5278 101.27 20.5586 95.1356 17.5285 89.195 18.4084 83.645 22.025 77.0231 26.3254 73.6153 32.6788 73.7122 40.5958 73.8098 48.4141 79.1653 54.8663 86.8583 55.9421 93.4801 56.822 99.0301 54.4757 103.413 49.4915 104.289 48.4172 105.069 47.2433 106.042 45.8749H87.2489C85.2044 45.8749 84.7176 44.6045 85.3989 42.9421 86.6645 39.912 89.002 34.8298 90.3653 32.2883 90.6575 31.7017 91.3387 30.7246 92.7996 30.7246H128.245C128.05 33.3634 128.05 36.0021 127.66 38.6417 126.59 45.6789 123.961 52.1295 119.676 57.7991 112.665 67.0837 103.512 72.8513 91.9239 74.4158 82.3809 75.6861 73.52 73.8292 65.7286 67.9651 58.5146 62.49 54.4325 55.2568 53.3615 46.2654 52.0958 35.6116 55.2115 26.0337 61.6388 17.6273 68.5528 8.53716 77.7059 2.77033 88.9043.718139 98.0574-.944314 106.821.131575 114.709 5.5071 119.87 8.92767 123.57 13.6194 126.006 19.289 126.59 20.1688 126.201 20.6574 125.032 20.9514V20.9491z"
fill="#00acd7"></path>
<path
d="M157.262 75C148.401 74.804 140.318 72.2554 133.502 66.3976 127.757 61.4126 124.154 55.0584 122.986 47.5335 121.233 36.4883 124.252 26.7136 130.874 18.0155 137.983 8.63206 146.551 3.74508 158.139 1.69289 168.072-.0667977 177.421.91107 185.892 6.6779 193.585 11.9554 198.356 19.0914 199.622 28.4741 201.278 41.6694 197.48 52.4204 188.424 61.6086 181.997 68.1565 174.11 72.2624 165.053 74.1194 162.425 74.6079 159.796 74.7059 157.264 74.9992L157.262 75zM180.438 35.5128C180.34 34.2425 180.34 33.2646 180.146 32.2875 178.392 22.6108 169.532 17.1372 160.281 19.2882 151.225 21.3404 145.382 27.1065 143.24 36.2954 141.487 43.9192 145.188 51.6418 152.199 54.7683 157.554 57.113 162.91 56.8205 168.071 54.1817 175.764 50.1824 179.951 43.9192 180.439 35.5128H180.438z"
fill="#00acd7"></path>
</svg></span>
<span title=".NET Core">
<svg class="h-8 mr-1 rounded" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 64 64">
<defs>
<style>
.cls-1 {
fill: #5c2d91
}
.cls-2,
.cls-3 {
fill: #fff
}
.cls-2 {
opacity: .1
}
.cls-4 {
fill: #f2f2f2
}
</style>
</defs>
<title>logo_NETcore</title>
<circle class="cls-1" cx="32" cy="32" r="32"></circle>
<path class="cls-2" d="M9.82 9A32 32 0 1 0 55 54.18z"></path>
<path class="cls-3"
d="M7.4 37.25a1.35 1.35.0 0 1-1-.42 1.38 1.38.0 0 1-.41-1 1.4 1.4.0 0 1 .41-1 1.34 1.34.0 0 1 1-.43 1.37 1.37.0 0 1 1 .43 1.39 1.39.0 0 1 .42 1 1.37 1.37.0 0 1-.42 1A1.38 1.38.0 0 1 7.4 37.25z">
</path>
<path class="cls-3"
d="M27.27 37H24.65L15.28 22.46a6 6 0 0 1-.58-1.14h-.08a18.72 18.72.0 0 1 .1 2.5V37H12.59V18.77h2.77l9.12 14.28q.57.89.74 1.22h.05a19.28 19.28.0 0 1-.13-2.68V18.77h2.13z">
</path>
<path class="cls-3" d="M41.69 37H32V18.77h9.24V20.7H34.18v6.06h6.58v1.92H34.18V35h7.52z"></path>
<path class="cls-3" d="M56 20.7H50.7V37H48.57V20.7H43.33V18.77H56z"></path>
<path class="cls-4"
d="M26.12 49.4a4.93 4.93.0 0 1-2.32.49 3.74 3.74.0 0 1-2.87-1.15 4.26 4.26.0 0 1-1.08-3 4.46 4.46.0 0 1 1.21-3.26 4.12 4.12.0 0 1 3.08-1.24 4.93 4.93.0 0 1 2 .35v1a4 4 0 0 0-2-.5 3.06 3.06.0 0 0-2.35 1 3.64 3.64.0 0 0-.9 2.58 3.47 3.47.0 0 0 .84 2.45 2.86 2.86.0 0 0 2.21.91 4.14 4.14.0 0 0 2.19-.56z">
</path>
<path class="cls-4"
d="M30.21 49.89A2.78 2.78.0 0 1 28.08 49a3.11 3.11.0 0 1-.79-2.23 3.24 3.24.0 0 1 .83-2.36 3 3 0 0 1 2.23-.85 2.69 2.69.0 0 1 2.09.83 3.28 3.28.0 0 1 .75 2.29 3.22 3.22.0 0 1-.81 2.3A2.84 2.84.0 0 1 30.21 49.89zm.07-5.47a1.83 1.83.0 0 0-1.46.63 2.59 2.59.0 0 0-.54 1.74 2.45 2.45.0 0 0 .54 1.68 1.85 1.85.0 0 0 1.46.62 1.76 1.76.0 0 0 1.43-.6 2.62 2.62.0 0 0 .5-1.72 2.66 2.66.0 0 0-.5-1.73A1.75 1.75.0 0 0 30.28 44.42z">
</path>
<path class="cls-4"
d="M37.86 44.72a1.18 1.18.0 0 0-.73-.19 1.23 1.23.0 0 0-1 .58 2.68 2.68.0 0 0-.41 1.58v3.06h-1v-6h1V45h0a2.1 2.1.0 0 1 .63-1 1.43 1.43.0 0 1 .94-.35 1.57 1.57.0 0 1 .57.08z">
</path>
<path class="cls-4"
d="M43.72 47H39.49A2.24 2.24.0 0 0 40 48.54a1.86 1.86.0 0 0 1.42.54 3 3 0 0 0 1.86-.67v.9a3.48 3.48.0 0 1-2.09.57 2.54 2.54.0 0 1-2-.82 3.35 3.35.0 0 1-.73-2.3 3.28 3.28.0 0 1 .79-2.28 2.55 2.55.0 0 1 2-.88 2.26 2.26.0 0 1 1.82.76 3.18 3.18.0 0 1 .64 2.12zm-1-.81a2 2 0 0 0-.4-1.29 1.37 1.37.0 0 0-1.1-.46 1.55 1.55.0 0 0-1.15.49 2.21 2.21.0 0 0-.59 1.27z">
</path>
</svg></span>
</div>
</div>
<div class="col col-lg-6">
<div class="fakeMenu flex p-2">
<div class="fakeButtons fakeClose border-r-2 p-2"></div>
<div class="fakeButtons fakeMinimize border-r-2 p-2 ml-2"></div>
<div class="fakeButtons fakeZoom p-2 ml-2"></div>
</div>
<div class="fakeScreen">
<p class="line1">$ jx create quickstart<span class="cursor1">_</span></p>
<p class="line2">? select the quickstart you wish to create [Use arrows to move, space to select, type to filter]<br>
> android-quickstart
<br/> angular-io-quickstart
<br/> aspnet-app
<br/> node-http
<br/> python-http
<br/> golang-http </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col">
<div class="features text-center">Write Your Code, Let Jenkins X Do The Rest</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">Jenkins X Pipelines</h2>
<h3>Automated CI/CD</h3>
<p>Rather than having to have deep knowledge of the internals of Jenkins X Pipeline, Jenkins X will
default awesome pipelines for your projects that implements fully CI and CD.</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">Environments</h2>
<h3>Environment Promotion 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</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>