0.1.5 • Published 3 years ago

kuber-ez v0.1.5

Weekly downloads
19
License
-
Repository
-
Last release
3 years ago

kuber-ez

Kuber-ez is a web-based tool for kubernetes manifest composition and operation tool in a visual way that requires minimal understanding of Yaml and CLI

YouTube:

Online:

http://msaez.io or http://msaez.io/#/kubernetes/anonymous/kuberLocal/kuberInit/-init

Snapshots:

image

image

kuberEz화면캡처2

image

image

image

image

Build and Run

Standalone Mode

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

Full-fledged Mode

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

image

(Above diagram shows all the kuberEz components)

How to add new component

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.