-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
918 lines (838 loc) · 53.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163348089-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-163348089-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Website Title -->
<!-- <title>HokStack - Deploy Hadoop cluster on Kubernetes</title> -->
<!-- SEO Meta Tags -->
<title>HokStack - Deploy Hadoop cluster on Kubernetes</title>
<meta name="title" content="HokStack - Deploy Hadoop cluster on Kubernetes">
<meta name="description" content="Running Hadoop Cluster on Kubernetes made easy by Hokstack it lets you deploy multiple Hadoop clusters on Kubernetes in just a few minutes and destroy them when not needs. Using HokStack you can provide developers small Development environment">
<meta name="keywords" content="Bigdata, Hadoop, Kubernetes, Containers, Apache Hadoop, HDP, Sandbox, Developer, Hive, Spark, Hbase, Kafka, Ambari, Helm, Operator, Yarn">
<meta name="author" content="HokStack">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name=”robots” content="index, follow">
<!-- OG Meta Tags to improve the way the post looks when you share the page on LinkedIn, Facebook, Google+ -->
<meta property="og:site_name" content="HokStack" /> <!-- website name -->
<meta property="og:site" content="https://hokstack.io" /> <!-- website link -->
<meta property="og:title" content="Hokstack"/> <!-- title shown in the actual shared post -->
<meta property="og:description" content="Hokstack lets you deploy Hadoop cluster on Kubernetes" /> <!-- description shown in the actual shared post -->
<meta property="og:image" content="https://i.imgur.com/TI1Dnt6.png" /> <!-- image link, make sure it's jpg -->
<meta property="og:url" content="https://hokstack.io" /> <!-- where do you want your post to link to -->
<meta property="og:type" content="product" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://hokstack.io/">
<meta property="og:title" content="HokStack - Deploy Hadoop cluster on Kubernetes">
<meta property="og:description" content="Running Hadoop Cluster on Kubernetes made easy by Hokstack it lets you deploy multiple Hadoop clusters on Kubernetes in just a few minutes and destroy them when not needs. Using HokStack you can provide developers small Development environment">
<meta property="og:image" content="https://i.imgur.com/TI1Dnt6.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://hokstack.io/">
<meta property="twitter:title" content="HokStack - Deploy Hadoop cluster on Kubernetes">
<meta property="twitter:description" content="https://i.imgur.com/TI1Dnt6.png">
<meta property="twitter:image" content="https://i.imgur.com/TI1Dnt6.png">
<!-- Styles -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap&subset=latin-ext" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="css/swiper.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
</head>
<body data-spy="scroll" data-target=".fixed-top">
<!-- Preloader -->
<div class="spinner-wrapper">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
<!-- end of preloader -->
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-custom fixed-top">
<div class="container">
<!-- Text Logo - Use this if you don't have a graphic logo -->
<!-- <a class="navbar-brand logo-text page-scroll" href="index.html">Tivo</a> -->
<!-- Image Logo -->
<!-- <a class="navbar-brand logo-image" href="index.html"><img src="images/vector/isolated-monochrome-white.svg" alt="alternative"></a> -->
<a class="navbar-brand logo-image" href="/"><img src="images/vector/isolated-monochrome-white.svg" alt=""></a>
<!-- Mobile Menu Toggle Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-awesome fas fa-bars"></span>
<span class="navbar-toggler-awesome fas fa-times"></span>
</button>
<!-- end of mobile menu toggle button -->
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#header">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#whyhokstack">Why HokStack?</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#details">Contribute</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="https://docs.hokstack.io" target="_blank">Documentation</a>
</li>
<!-- Dropdown Menu -->
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle page-scroll" href="#video" id="navbarDropdown" role="button" aria-haspopup="true" aria-expanded="false">VIDEO</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="article-details.html"><span class="item-text">ARTICLE DETAILS</span></a>
<div class="dropdown-items-divide-hr"></div>
<a class="dropdown-item" href="terms-conditions.html"><span class="item-text">TERMS CONDITIONS</span></a>
<div class="dropdown-items-divide-hr"></div>
<a class="dropdown-item" href="privacy-policy.html"><span class="item-text">PRIVACY POLICY</span></a>
</div>
</li> -->
<!-- end of dropdown menu -->
</ul>
<span class="nav-item">
<a class="btn-outline-sm" href="https://github.com/hokstack" target="_blank"><i class="fab fa-github"></i> GitHub</a>
</span>
</div>
</div> <!-- end of container -->
</nav> <!-- end of navbar -->
<!-- end of navigation -->
<!-- Header -->
<header id="header" class="header">
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-lg-6 col-xl-5">
<div class="text-container">
<h1 style="text-align:center">HokStack</h1>
<p class="p-large" style="text-align:center">Now deploy a complete Hadoop cluster inside your Kubernetes cluster!</p>
<!-- <a class="btn-solid-lg page-scroll" href="sign-up.html">SIGN UP</a> -->
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6 col-xl-7">
<div class="image-container">
<div class="img-wrapper">
<img class="img-fluid" src="images/ambari-dash.gif" alt="" data-rotate="30">
<!-- <img class="img-fluid" src="images/hok-ambari-dash.gif" alt="alternative"> -->
</div> <!-- end of img-wrapper -->
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of header-content -->
</header> <!-- end of header -->
<svg class="header-frame" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1920 310"><defs><style>.cls-1{fill:#5f4def;}</style></defs><title>header-frame</title><path class="cls-1" d="M0,283.054c22.75,12.98,53.1,15.2,70.635,14.808,92.115-2.077,238.3-79.9,354.895-79.938,59.97-.019,106.17,18.059,141.58,34,47.778,21.511,47.778,21.511,90,38.938,28.418,11.731,85.344,26.169,152.992,17.971,68.127-8.255,115.933-34.963,166.492-67.393,37.467-24.032,148.6-112.008,171.753-127.963,27.951-19.26,87.771-81.155,180.71-89.341,72.016-6.343,105.479,12.388,157.434,35.467,69.73,30.976,168.93,92.28,256.514,89.405,100.992-3.315,140.276-41.7,177-64.9V0.24H0V283.054Z"/></svg>
<!-- end of header -->
<!-- Customers -->
<div class="slider-1">
<div class="container">
<div class="row">
<div class="col-lg-12">
<!-- Image Slider -->
<div class="slider-container">
<div class="swiper-container image-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img class="img-fluid" src="images/hadoop.jpg" alt="">
</div>
<div class="swiper-slide">
<img class="img-fluid" src="images/hive.jpg" alt="">
</div>
<div class="swiper-slide">
<img class="img-fluid" src="images/kafka.jpg" alt="">
</div>
<div class="swiper-slide">
<img class="img-fluid" src="images/spark.jpg" alt="">
</div>
<div class="swiper-slide">
<img class="img-fluid" src="images/hbase.jpg" alt="">
</div>
<div class="swiper-slide">
<img class="img-fluid" src="images/tez.jpg" alt="">
</div>
</div> <!-- end of swiper-wrapper -->
</div> <!-- end of swiper container -->
</div> <!-- end of slider-container -->
<!-- end of image slider -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of slider-1 -->
<!-- end of customers -->
<!-- Description -->
<div class="cards-1">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="above-heading">DESCRIPTION</div>
<h2 class="h2-heading">Easily spin up, scale and destroy Hadoop clusters</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card">
<div class="card-image">
<img class="img-fluid" src="images/helm-developer.gif" alt="">
</div>
<div class="card-body">
<h4 class="card-title">Helm Chart</h4>
<p>Now you can apply Helm Chart on your existing K8s cluster and watch those data nodes spin up as pods!</p>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<div class="card-image">
<img class="img-fluid" src="images/opr-developer.gif" alt="">
</div>
<div class="card-body">
<h4 class="card-title">HoK Operator</h4>
<p>HoK Operator can manage all your Hadoop clusters via Custom Resource - HoK</p>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<div class="card-image">
<img class="img-fluid" src="images/ui-developer.png" alt="">
</div>
<div class="card-body">
<h4 class="card-title">Web UI</h4>
<p>Dont't want to edit yamls? Worry not, we have a built-in web UI platform for you.</p>
</div>
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-1 -->
<!-- end of description -->
<!-- Features -->
<div id="features" class="tabs">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="above-heading">FEATURES</div>
<h2 class="h2-heading">Focus on Automation</h2>
<p class="p-heading">
Setting up your own Hadoop environment is tedious. And setting it up for multiple teams in your project is suicidal. We focus on automating so that you can have multiple Hadoop cluster instances up and running in minutes.
</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Tabs Links -->
<ul class="nav nav-tabs" id="argoTabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="nav-tab-1" data-toggle="tab" href="#tab-1" role="tab" aria-controls="tab-1" aria-selected="true"><i class="fas fa-list"></i>Helm Chart</a>
</li>
<li class="nav-item">
<a class="nav-link" id="nav-tab-2" data-toggle="tab" href="#tab-2" role="tab" aria-controls="tab-2" aria-selected="false"><i class="fas fa-envelope-open-text"></i>HoK Operator</a>
</li>
<li class="nav-item">
<a class="nav-link" id="nav-tab-3" data-toggle="tab" href="#tab-3" role="tab" aria-controls="tab-3" aria-selected="false"><i class="fas fa-chart-bar"></i>Web UI</a>
</li>
</ul>
<!-- end of tabs links -->
<!-- Tabs Content -->
<div class="tab-content" id="argoTabsContent">
<!-- Tab -->
<div class="tab-pane fade show active" id="tab-1" role="tabpanel" aria-labelledby="tab-1">
<div class="row">
<div class="col-lg-6">
<div class="image-container">
<img class="img-fluid" src="images/helm-developer.gif" alt="">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="text-container">
<h3 >Using our Helm Chart is simple</h3>
<p>It's very easy to use helm charts and deploy apps on K8s. Use Hok Charts which can do the following</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Create separate namespace.</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Spin up Hadoop cluster in that namespace.</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Scale up or down data nodes as needed.</div>
</li>
</ul>
<a class="btn-solid-reg page-scroll" href="https://hub.kubeapps.com/charts/hok/hokstack" target="_blank">Go to Chart</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of tab-pane -->
<!-- end of tab -->
<!-- Tab -->
<div class="tab-pane fade" id="tab-2" role="tabpanel" aria-labelledby="tab-2">
<div class="row">
<div class="col-lg-6">
<div class="image-container">
<img class="img-fluid" src="images/opr-developer.gif" alt="">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="text-container">
<h3>HoK Operator</h3>
<p>Tired of editing long values.yml file? Deploy our operator which watches our Custom Resource - HoK so that you focus on managing resources not Yamls!</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Easily deploy operator.</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">List HoK resources in Kubernetes</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Manage HoK resources</div>
</li>
</ul>
<!-- <a class="btn-solid-reg popup-with-move-anim" href="#details-lightbox-2">Go to Operator</a> -->
<a class="btn-solid-reg page-scroll" href="https://github.com/hokstack/hok-operator" target="_blank">Go to Operator</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of tab-pane -->
<!-- end of tab -->
<!-- Tab -->
<div class="tab-pane fade" id="tab-3" role="tabpanel" aria-labelledby="tab-3">
<div class="row">
<div class="col-lg-6">
<div class="image-container">
<!-- <img class="img-fluid" src="images/features-3.png" alt="alternative"> -->
<img class="img-fluid" src="images/ui-developer1.gif" alt="">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="text-container">
<h3>Web UI</h3>
<p>How about managing all this via UI?</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Manage Hadoop instances via UI</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">See realtime hadoop resources status</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Get logs to monitor how datanode components are running.</div>
</li>
</ul>
<a class="btn-solid-reg popup-with-move-anim" href="https://github.com/hokstack/hok-operator">Deploy (Development In Progress)</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of tab-pane -->
<!-- end of tab -->
</div> <!-- end of tab content -->
<!-- end of tabs content -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of tabs -->
<!-- end of features -->
<!-- Details Lightboxes -->
<!-- Details Lightbox 1 -->
<div id="details-lightbox-1" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<div class="image-container">
<img class="img-fluid" src="images/details-lightbox.png" alt="">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>List Building</h3>
<hr>
<h5>Core service</h5>
<p>It's very easy to start using Tivo. You just need to fill out and submit the Sign Up Form and you will receive access to the app.</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i><div class="media-body">List building framework</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Easy database browsing</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">User administration</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Automate user signup</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Quick formatting tools</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Fast email checking</div>
</li>
</ul>
<a class="btn-solid-reg mfp-close" href="sign-up.html">SIGN UP</a> <a class="btn-outline-reg mfp-close as-button" href="#screenshots">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of details lightbox 1 -->
<!-- Details Lightbox 2 -->
<div id="details-lightbox-2" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<div class="image-container">
<img class="img-fluid" src="images/details-lightbox.png" alt="">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Campaign Monitoring</h3>
<hr>
<h5>Core service</h5>
<p>It's very easy to start using Tivo. You just need to fill out and submit the Sign Up Form and you will receive access to the app.</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i><div class="media-body">List building framework</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Easy database browsing</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">User administration</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Automate user signup</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Quick formatting tools</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Fast email checking</div>
</li>
</ul>
<a class="btn-solid-reg mfp-close" href="sign-up.html">SIGN UP</a> <a class="btn-outline-reg mfp-close as-button" href="#screenshots">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of details lightbox 2 -->
<!-- Details Lightbox 3 -->
<div id="details-lightbox-3" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<div class="image-container">
<img class="img-fluid" src="images/details-lightbox.png" alt="">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Analytics Tools</h3>
<hr>
<h5>Core service</h5>
<p>It's very easy to start using Tivo. You just need to fill out and submit the Sign Up Form and you will receive access to the app.</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i><div class="media-body">List building framework</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Easy database browsing</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">User administration</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Automate user signup</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Quick formatting tools</div>
</li>
<li class="media">
<i class="fas fa-square"></i><div class="media-body">Fast email checking</div>
</li>
</ul>
<a class="btn-solid-reg mfp-close" href="sign-up.html">SIGN UP</a> <a class="btn-outline-reg mfp-close as-button" href="#screenshots">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of details lightbox 3 -->
<!-- end of details lightboxes -->
<!-- Details -->
<div id="details" class="basic-1">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="text-container">
<h2 style="text-align:center" >Want to contribute or extend Hokstack’s features?</h2>
<p >Hokstack’s codebase is freely available. Fork, explore, submit PR! Join to become a part of Hokstack community.</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">We are open for all the new features please see the PR proccess.</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Follow the code of conduct while contributing</div>
</li>
</ul>
<a class="btn-solid-reg page-scroll" href="https://github.com/hokstack/hok-helm/blob/master/CONTRIBUTING.md" target="_blank">Guideline</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="image-container">
<img class="img-fluid" src="images/contribute.gif" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-1 -->
<!-- end of details -->
<!-- Video -->
<div id="video" class="basic-2">
<div class="container">
<div id="whyhokstack" ></div>
<div class="col-lg-12">
<h2 class="h2-heading">Want to know more? Watch out our interactive video</h2>
<!-- Video Preview -->
<!-- <iframe frameborder="0" src="https://biteable.com/watch/embed/hokstack-explainer-2511217" allowfullscreen="true" allow="autoplay"></iframe> -->
<div><div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.25%;"><iframe src="https://www.youtube-nocookie.com/embed/fVaUC5uQuV0" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen allow="autoplay *; encrypted-media *; accelerometer; gyroscope; picture-in-picture"></iframe></div></div>
<!-- <div class="container">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://biteable.com/watch/embed/hokstack-explainer-2511217" allowfullscreen="true" allow="autoplay"></iframe>
</div>
</div> -->
<!-- <div class="image-container">
<div class="video-wrapper">
<a class="popup-youtube" href="https://www.youtube.com/watch?v=fLCjQJCekTs" data-effect="fadeIn">
<img class="img-fluid" src="images/flying_space_shuttle-07_4x.png" alt="alternative">
<span class="video-play-button">
<span></span>
</span>
</a>
</div> -->
<!-- </div> -->
<!-- end of video preview -->
<!-- <div class="p-heading" style="font-size: 22px" >We are all looking for the magic formula. Well, here you go: Creativity + Iterative Development = Innovation</div>
<div class="p-heading" style="font-size: 18px" > ~ James Dyson, Founder of Dyson</div> -->
<!-- </div> end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-2 -->
<!-- end of video -->
<!-- Pricing -->
<div id="pricing" class="cards-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="above-heading"></div>
<h2 class="h2-heading">Hokstack is Open-Source <i class="fab fa-osi"> </i></h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Card-->
<div class="card">
<div class="card-body">
<div class="card-title"></div>
<div class="price"><span class="currency">$</span><span class="value">Free</span></div>
<div class="frequency">Unlimited clusters</div>
<div class="divider"></div>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-check"></i><div class="media-body">Helm Charts</div>
</li>
<li class="media">
<i class="fas fa-check"></i><div class="media-body">Operator</div>
</li>
<li class="media">
<i class="fas fa-check"></i><div class="media-body">Web UI</div>
</li>
</ul>
<div class="button-wrapper">
<a class="btn-solid-reg page-scroll" href="https://github.com/hokstack" target="_blank">Deploy Now!</a>
</div>
</div>
</div> <!-- end of card -->
<!-- end of card -->
<!-- Card-->
<!-- <div class="card">
<div class="card-body">
<div class="card-title">COMPLETE</div>
<div class="price"><span class="currency">$</span><span class="value">39.99</span></div>
<div class="frequency">monthly</div>
<div class="divider"></div>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-check"></i><div class="media-body">Email Marketing Module</div>
</li>
<li class="media">
<i class="fas fa-check"></i><div class="media-body">User Control Management</div>
</li>
<li class="media">
<i class="fas fa-check"></i><div class="media-body">List Building And Cleaning</div>
</li>
<li class="media">
<i class="fas fa-check"></i><div class="media-body">Collected Data Reports</div>
</li>
<li class="media">
<i class="fas fa-check"></i><div class="media-body">Planning And Evaluation</div>
</li>
</ul>
<div class="button-wrapper">
<a class="btn-solid-reg page-scroll" href="sign-up.html">SIGN UP</a>
</div>
</div>
</div> -->
<!-- end of card -->
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-2 -->
<!-- end of pricing -->
<!-- Testimonials -->
<!-- <div class="slider-2">
<div class="container">
<div class="row">
<div class="col-lg-12"> -->
<!-- Text Slider -->
<!-- <div class="slider-container">
<div class="swiper-container text-slider">
<div class="swiper-wrapper"> -->
<!-- Slide -->
<!-- <div class="swiper-slide">
<div class="image-wrapper">
<img class="img-fluid" src="images/testimonial-1.jpg" alt="alternative">
</div>
<div class="text-wrapper">
<div class="testimonial-text">I started to use Tivo with the free trial about a year ago and never stopped since then. It does all the repeating marketing tasks and allows me to focus on core development activities like new product research and design. I love it and recommend it to everyone.</div>
<div class="testimonial-author">Jude Thorn - Online Marketer</div>
</div>
</div> -->
<!-- end of slide -->
<!-- Slide -->
<!-- <div class="swiper-slide">
<div class="image-wrapper">
<img class="img-fluid" src="images/testimonial-2.jpg" alt="alternative">
</div>
<div class="text-wrapper">
<div class="testimonial-text">Awesome features for the money. I never thought such a low ammount of money would bring me so many leads per month. Before Tivo I used the services of an agency which cost 10x more and delivered far less. Highly recommended to marketers focused on results.</div>
<div class="testimonial-author">Roy Smith - Developer</div>
</div>
</div> -->
<!-- end of slide -->
<!-- Slide -->
<!-- <div class="swiper-slide">
<div class="image-wrapper">
<img class="img-fluid" src="images/testimonial-3.jpg" alt="alternative">
</div>
<div class="text-wrapper">
<div class="testimonial-text">Tivo is the best marketing automation app for small and medium sized business. It understands the mindset of young entrepreneurs and provides the necessary data for wise marketing decisions. Just give it a try and you will definitely not regret spending your time.</div>
<div class="testimonial-author">Marsha Singer - Online Marketer</div>
</div>
</div> -->
<!-- end of slide -->
<!-- Slide -->
<!-- <div class="swiper-slide">
<div class="image-wrapper">
<img class="img-fluid" src="images/testimonial-4.jpg" alt="alternative">
</div>
<div class="text-wrapper">
<div class="testimonial-text">Tivo is one of the greatest marketing automation apps out there. I especially love the Reporting Tools module because it gives me such a great amount of information based on little amounts of input gathered in just few weeks of light weight usage. Recommended!</div>
<div class="testimonial-author">Ronda Louis - Online Marketer</div>
</div>
</div> -->
<!-- end of slide -->
<!-- </div> -->
<!-- Add Arrows -->
<!-- <div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div> -->
<!-- end of add arrows -->
<!-- </div>
</div> -->
<!-- end of text slider -->
<!-- </div>
</div>
</div>
</div> -->
<!-- end of testimonials -->
<!-- Newsletter -->
<div class="form">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-container">
<div class="above-heading">Buckminster Fuller</div>
<h4 style="text-align:center" >You never change things by fighting the existing reality. To change something, build a new model that makes the existing model obsolete. </h4>
<!-- Newsletter Form -->
<!-- <form id="newsletterForm" data-toggle="validator" data-focus="false">
<div class="form-group">
<input type="email" class="form-control-input" id="nemail" required>
<label class="label-control" for="nemail">Email</label>
<div class="help-block with-errors"></div>
</div>
<div class="form-group checkbox">
<input type="checkbox" id="nterms" value="Agreed-to-Terms" required>I've read and agree to Tivo's written <a href="privacy-policy.html">Privacy Policy</a> and <a href="terms-conditions.html">Terms Conditions</a>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<button type="submit" class="form-control-submit-button">SUBSCRIBE</button>
</div>
<div class="form-message">
<div id="nmsgSubmit" class="h3 text-center hidden"></div>
</div>
</form> -->
<!-- end of newsletter form -->
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<div class="icon-container">
<span class="fa-stack">
<a href="https://www.linkedin.com/company/hokstack" target="_blank">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-linkedin-in fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="https://twitter.com/hokstack" target="_blank">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
<!-- <span class="fa-stack">
<a href="#your-link">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-pinterest-p fa-stack-1x"></i>
</a>
</span> -->
<span class="fa-stack">
<a href="https://www.instagram.com/hokstack" target="_blank">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-instagram fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="https://facebook.com/hokstack" target="_blank">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
</div> <!-- end of col -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of form -->
<!-- end of newsletter -->
<!-- Footer -->
<svg class="footer-frame" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1920 79"><defs><style>.cls-2{fill:#5f4def;}</style></defs><title>footer-frame</title><path class="cls-2" d="M0,72.427C143,12.138,255.5,4.577,328.644,7.943c147.721,6.8,183.881,60.242,320.83,53.737,143-6.793,167.826-68.128,293-60.9,109.095,6.3,115.68,54.364,225.251,57.319,113.58,3.064,138.8-47.711,251.189-41.8,104.012,5.474,109.713,50.4,197.369,46.572,89.549-3.91,124.375-52.563,227.622-50.155A338.646,338.646,0,0,1,1920,23.467V79.75H0V72.427Z" transform="translate(0 -0.188)"/></svg>
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="footer-col first">
<h4>About HokStack</h4>
<p class="p-small" >We're passionate about designing and developing one of the best DevOps solution apps in the market.</p>
</div>
</div> <!-- end of col -->
<div class="col-md-4">
<div class="footer-col middle">
<h4>Important Links</h4>
<ul class="list-unstyled li-space-lg p-small">
<!-- <li class="media">
<i class="fas fa-square"></i>
<div class="media-body"> We'd love to hear from you <a class="white" target="_blank" href="https://forms.gle/KPLfRXHEefnRZ57j7">Drop us line</a></div>
</li> -->
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Our github organisation <a class="white" target="_blank" href="https://github.com/hokstack">HokStack</a></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">URLs and Repo <a class="white" target="_blank" href="https://status.hokstack.io">Status Page</a></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<!-- <div class="media-body">Image creditshref="#image-crdit">dribbble.com</div> -->
<div class="media-body">Image credits <a class="white" href="image-credits">Dribbble</a></div>
</li>
<!-- <li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Read our <a class="white" href="terms-conditions.html">Terms & Conditions</a>, <a class="white" href="privacy-policy.html">Privacy Policy</a></div>
</li> -->
</ul>
</div>
</div> <!-- end of col -->
<div class="col-md-4">
<div class="footer-col last">
<h4>Contact</h4>
<ul class="list-unstyled li-space-lg p-small">
<li class="media">
<i class="fas fa-map-marker-alt"></i>
<div class="media-body"><a class="white" target="_blank" href="https://goo.gl/maps/F6AqFC9311C81QhNA">London, United Kingdom</a></div>
</li>
<li class="media">
<i class="fas fa-list"></i>
<div class="media-body"><a class="white" target="_blank" href="https://forms.gle/KPLfRXHEefnRZ57j7">Drop us line</a></div>
</li>
<li class="media">
<i class="fas fa-envelope"></i>
<div class="media-body">Write us <a class="white" href="mailto:hello@hokstack.io">hello@hokstack.io</a></div>
</li>
</ul>
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of footer -->
<!-- end of footer -->
<!-- Copyright -->
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="p-small">Made with <span style="color: #e25555;">♥</span> in Statefulsets</p>
<p class="p-small"> Build with power of HDP stack 2.6 and Apache Hadoop</p>
<p style="color:white; font-size: 14px" >Copyright © 2020 HokStack Maintainer(s), Apache 2.0 License</p>
</div> <!-- end of col -->
</div> <!-- enf of row -->
</div> <!-- end of container -->
</div> <!-- end of copyright -->
<!-- end of copyright -->
<!-- Scripts -->
<script src="js/jquery.min.js"></script> <!-- jQuery for Bootstrap's JavaScript plugins -->
<script src="js/popper.min.js"></script> <!-- Popper tooltip library for Bootstrap -->
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap framework -->
<script src="js/jquery.easing.min.js"></script> <!-- jQuery Easing for smooth scrolling between anchors -->
<script src="js/swiper.min.js"></script> <!-- Swiper for image and text sliders -->
<script src="js/jquery.magnific-popup.js"></script> <!-- Magnific Popup for lightboxes -->
<script src="js/validator.min.js"></script> <!-- Validator.js - Bootstrap plugin that validates forms -->
<script src="js/scripts.js"></script> <!-- Custom scripts -->
</body>
</html>