ELIOT-UI Backend Code Added 18/1918/2
authorAbhijit Dasgupta <abhijit.das.gupta@huawei.com>
Tue, 5 Nov 2019 10:00:49 +0000 (10:00 +0000)
committerAbhijit Dasgupta <abhijit.das.gupta@huawei.com>
Mon, 2 Dec 2019 11:05:42 +0000 (11:05 +0000)
commit59f512662c02a16c1d5c45b090b185d2e773310f
treeb6c2b2e2a1926feea97d0ae7c3670698acbbe633
parent946bdf7ddd97ce3159cba4f9cff5899e5f4eb68e
ELIOT-UI Backend Code Added

ELIOT-UI Backend Spring Boot Application using Java Kubernetes Client
Code to interact with Kubernetes API-Server

First Release supporting below Features
1. Display Nodes in ELIOT Cluster
2. Display Services in ELIOT Cluster
3. Display PODS running in ELIOT Cluster

Added Server Port in application.properties file

Signed-off-by: Abhijit Dasgupta <abhijit.das.gupta@huawei.com>
Change-Id: Icf8e1e03a3882b83710a4e989b89e0f797765a7d
15 files changed:
blueprints/common/eliot-ui/be/src/eliotk8sclient/.mvn/wrapper/MavenWrapperDownloader.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/.mvn/wrapper/maven-wrapper.properties [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/mvnw [new file with mode: 0755]
blueprints/common/eliot-ui/be/src/eliotk8sclient/mvnw.cmd [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/pom.xml [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/Eliotk8sclientApplication.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/controller/NodeController.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/model/EliotNodes.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/model/EliotPods.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/model/EliotServices.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/model/Node.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/model/Pod.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/java/com/eliot/eliotbe/eliotk8sclient/model/Service.java [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/main/resources/application.properties [new file with mode: 0644]
blueprints/common/eliot-ui/be/src/eliotk8sclient/src/test/java/com/eliot/eliotbe/eliotk8sclient/Eliotk8sclientApplicationTests.java [new file with mode: 0644]