Kuber-ez (Kubeez) is a web-based tool for kubernetes manifest composition and operation tool in a visual way that requires minimal understanding of Yaml and CLI
- Basic object editing: https://youtu.be/rVi2VNK2udM
- Istio object editing: https://youtu.be/t0utOq4dosc
http://www.msaez.io or http://www.msaez.io/#/kubernetes/anonymous/kuberLocal/kuberInit/-init
If you want to use the KuberEz for simply drawing models and generating Yaml, you only need to run front-end server:
npm install && npm run serve
or
docker run --name="kuberEz" -p 8081:8080 -d ohsy818/kuber-ez
If you want to use KuberEz for managing your clusters, you have to run all the components of KuberEz in a Kubernetes cluster:
kubectl create -f https://raw.githubusercontent.com/uengine-oss/kuber-ez/master/kubernetes/deploy.yaml
(Above diagram shows all the kuberEz components)
run the frontend
nvm install 14.19.0 && nvm use 14.19.0
npm i
npm run serve
run the tunneling server
git clone ..
cd kubeez-tunneling
mvn spring-boot:run
run the gateway
cd gateway
mvn spring-boot:run
You can find examples of Kubernetes object models in https://github.com/uengine-oss/kuber-ez/blob/master/src/components/designer/k8s-modeling/element. Create a new copy of element and property panel component for the K8S object kind (e.g. Deployment.vue and DeploymentPropertyPanel.vue), and place them in the above folder. Then add the component to the 'elementTypes' array of https://github.com/uengine-oss/kuber-ez/blob/master/src/components/designer/k8s-modeling/KubeModeler.vue file.