Commit 01a4b284 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch 'feat/monitoring-service' of...

Merge branch 'feat/monitoring-service' of https://gitlab.com/teraflow-h2020/controller into feat/device-adapt-to-context-api
parents 921e392e 7ca58a42
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -76,7 +76,11 @@ docs/_build/

# PyBuilder
.pybuilder/
target/
**/target/*
!**/target/generated-sources/
!**/target/kubernetes/
**/target/kubernetes/kubernetes.json
!**/target/kubernetes/kubernetes.yml

# Jupyter Notebook
.ipynb_checkpoints
+1 −0
Original line number Diff line number Diff line
@@ -18,4 +18,5 @@ include:
  - local: '/src/service/.gitlab-ci.yml'
  - local: '/src/tester_integration/.gitlab-ci.yml'
  - local: '/src/tester_functional/.gitlab-ci.yml'
  - local: '/src/automation/.gitlab-ci.yml'
  
+1 −0
Original line number Diff line number Diff line
../src/automation/target/kubernetes/kubernetes.yml
 No newline at end of file

proto/.gitignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
src/
uml/generated
+1 −1
Original line number Diff line number Diff line
#!/bin/bash
python3 -m grpc_tools.protoc -I=./ --python_out=src/ --grpc_python_out=src/ *.proto
#requires installation of protoc-gen-uml
export PATH=/home/osboxes/protoc-gen-uml/target/universal/stage/bin:$PATH
export PATH=${HOME}/protoc-gen-uml/target/universal/stage/bin:$PATH
protoc --uml_out=uml/ -I ./ *.proto
cd uml
java -jar plantuml.7997.jar *.puml
Loading