Commit f2574313 authored by Fotis Soldatos's avatar Fotis Soldatos
Browse files

Merge branch 'feat/policy-service' into 'develop'

feat: implementation of Policy service

See merge request teraflow-h2020/controller!36
parents c6260154 d0df8c70
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,4 +19,5 @@ include:
  - local: '/src/tester_integration/.gitlab-ci.yml'
  - local: '/src/tester_functional/.gitlab-ci.yml'
  - local: '/src/automation/.gitlab-ci.yml'
  - local: '/src/policy/.gitlab-ci.yml'
  
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ REGISTRY_IMAGE=""
#REGISTRY_IMAGE="http://my-container-registry.local/"

# Set the list of components you want to build images for, and deploy.
COMPONENTS="context device automation service compute monitoring centralizedattackdetector"
COMPONENTS="context device automation policy service compute monitoring centralizedattackdetector"

# Set the tag you want to use for your images.
IMAGE_TAG="tf-dev"
@@ -46,7 +46,7 @@ for COMPONENT in $COMPONENTS; do
    echo "  Building Docker image..."
    BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}.log"

    if [ "$COMPONENT" == "automation" ]; then
    if [ "$COMPONENT" == "automation" ] || [ "$COMPONENT" == "policy" ]; then
        docker build -t "$IMAGE_NAME" -f ./src/"$COMPONENT"/Dockerfile ./src/"$COMPONENT"/ > "$BUILD_LOG"
    else 
        docker build -t "$IMAGE_NAME" -f ./src/"$COMPONENT"/Dockerfile ./src/ > "$BUILD_LOG"
+1 −0
Original line number Diff line number Diff line
../src/policy/target/kubernetes/kubernetes.yml
 No newline at end of file
+10 −0
Original line number Diff line number Diff line
# Ignore everything except from pom.xml, src directory & target directory.
*
!pom.xml
!src/*
!target/*-runner
!target/*-runner.jar
!target/lib/*
!target/quarkus-app/*
# Directory needed for gRPC services
!target/generated-sources/*
 No newline at end of file
+0 −0

Empty file added.

Loading