File tree 4 files changed +88
-1
lines changed
docs/installation/install
4 files changed +88
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : cyclops
3
3
description : Cyclops Helm chart
4
4
type : application
5
- version : " 0.14.4 "
5
+ version : " 0.14.5 "
6
6
appVersion : " v0.18.1"
7
7
home : https://cyclops-ui.com/
8
8
keywords :
Original file line number Diff line number Diff line change @@ -6,6 +6,33 @@ Cyclops is an open-source tool that allows you to create custom Kubernetes UIs.
6
6
7
7
You can check [ Cyclops landing page] ( https://cyclops-ui.com ) or our [ GitHub repo] ( https://github.com/cyclops-ui/cyclops ) for documentation and more details.
8
8
9
+ ---
10
+
11
+ You can install the Cyclops Helm chart in your Kubernetes cluster using our OCI chart:
12
+ ``` bash
13
+ helm install cyclops \
14
+ --namespace cyclops \
15
+ --create-namespace \
16
+ oci://registry-1.docker.io/cyclopsui/cyclops
17
+ ```
18
+
19
+ Or add our Helm chart:
20
+
21
+ ```
22
+ helm repo add cyclops-ui https://cyclops-ui.com/helm
23
+ helm repo update
24
+ ```
25
+
26
+ And install Cyclops:
27
+
28
+ ```
29
+ helm install cyclops \
30
+ --namespace cyclops \
31
+ --create-namespace \
32
+ cyclops-ui/cyclops
33
+ ```
34
+ ---
35
+
9
36
You can confirm Cyclops is healthy by checking if Cyclops pods are up and running. You can do it with the command below
10
37
11
38
```
@@ -20,6 +47,8 @@ cyclops-ctrl-8b9cff4db-p74x6 1/1 Running 0 38s
20
47
cyclops-ui-6cb54c69bf-g78d5 1/1 Running 0 38s
21
48
```
22
49
50
+ ---
51
+
23
52
Cyclops UI is exposed via a Kubernetes service. You can port forward the service and use it from localhost with the command below:
24
53
25
54
```
Original file line number Diff line number Diff line change
1
+ ---
2
+ slug : helm
3
+ sidebar_label : Using Helm chart
4
+ title : Install Cyclops via Helm chart
5
+ description : " Cyclops Helm chart"
6
+ ---
7
+
8
+ You can install the Cyclops Helm chart in your Kubernetes cluster using our OCI chart:
9
+ ``` bash
10
+ helm install cyclops \
11
+ --namespace cyclops \
12
+ --create-namespace \
13
+ oci://registry-1.docker.io/cyclopsui/cyclops
14
+ ```
15
+
16
+ Or add our Helm chart:
17
+
18
+ ```
19
+ helm repo add cyclops-ui https://cyclops-ui.com/helm
20
+ helm repo update
21
+ ```
22
+
23
+ And install Cyclops:
24
+
25
+ ```
26
+ helm install cyclops \
27
+ --namespace cyclops \
28
+ --create-namespace \
29
+ cyclops-ui/cyclops
30
+ ```
31
+ ---
32
+
33
+ You can confirm Cyclops is healthy by checking if Cyclops pods are up and running. You can do it with the command below
34
+
35
+ ```
36
+ kubectl get pods -n cyclops
37
+ ```
38
+
39
+ and if Cyclops is healthy, you will get an output similar to the one below:
40
+
41
+ ```
42
+ NAME READY STATUS RESTARTS AGE
43
+ cyclops-ctrl-8b9cff4db-p74x6 1/1 Running 0 38s
44
+ cyclops-ui-6cb54c69bf-g78d5 1/1 Running 0 38s
45
+ ```
46
+
47
+ ---
48
+
49
+ Cyclops UI is exposed via a Kubernetes service. You can port forward the service and use it from localhost with the command below:
50
+
51
+ ```
52
+ kubectl port-forward svc/cyclops-ui -n cyclops 3000:3000
53
+ ```
54
+
55
+ You can now access Cyclops in your browser on [ http://localhost:3000 ] ( http://localhost:3000 ) .
56
+
57
+ Alternatively, you can expose Cyclops service via ingress.
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ const sidebars = {
51
51
} ,
52
52
items : [
53
53
"installation/install/manifest" ,
54
+ "installation/install/helm" ,
54
55
"installation/install/glasskube" ,
55
56
"installation/install/cyctl" ,
56
57
] ,
You can’t perform that action at this time.
0 commit comments