rancher-partner-charts/charts/cyclops/cyclops/0.14.2
Petar Cvitanović 9ebac8d16c
Add Cyclops (#1099)
Signed-off-by: petar-cvit <petar.cvitanovic@gmail.com>
2025-01-16 14:34:29 -07:00
..
crds Add Cyclops (#1099) 2025-01-16 14:34:29 -07:00
templates Add Cyclops (#1099) 2025-01-16 14:34:29 -07:00
.helmignore Add Cyclops (#1099) 2025-01-16 14:34:29 -07:00
Chart.yaml Add Cyclops (#1099) 2025-01-16 14:34:29 -07:00
README.md Add Cyclops (#1099) 2025-01-16 14:34:29 -07:00
values.yaml Add Cyclops (#1099) 2025-01-16 14:34:29 -07:00

README.md

Cyclops

Cyclops is an open-source tool that allows you to create custom Kubernetes UIs. With Cyclops, you can specify the right level of abstraction you need while deploying applications. You can specify all the Kubernetes objects that your system needs, as well as all of the fields your developers need to get their apps deployed - validations included!

You can check Cyclops landing page or our GitHub repo for documentation and more details.

You can confirm Cyclops is healthy by checking if Cyclops pods are up and running. You can do it with the command below

kubectl get pods -n cyclops

and if Cyclops is healthy, you will get an output similar to the one below:

NAME                           READY   STATUS    RESTARTS   AGE
cyclops-ctrl-8b9cff4db-p74x6   1/1     Running   0          38s
cyclops-ui-6cb54c69bf-g78d5    1/1     Running   0          38s

Cyclops UI is exposed via a Kubernetes service. You can port forward the service and use it from localhost with the command below:

kubectl port-forward svc/cyclops-ui -n cyclops 3000:3000

You can now access Cyclops in your browser on http://localhost:3000.

Alternatively, you can expose Cyclops service via ingress.