Commit f96ed153 authored by ldemarcosm's avatar ldemarcosm
Browse files

Updated AM and CAD services for codefreeze

parent 9f3b2ec8
Loading
Loading
Loading
Loading
+0 −21
Original line number Diff line number Diff line
@@ -19,10 +19,6 @@ spec:
        ports:
        - containerPort: 10002
        env:
        - name: DB_ENGINE
          value: "redis"
        - name: REDIS_DATABASE_ID
          value: "0"
        - name: LOG_LEVEL
          value: "DEBUG"
        readinessProbe:
@@ -51,20 +47,3 @@ spec:
  - name: grpc
    port: 10002
    targetPort: 10002
---
apiVersion: v1
kind: Service
metadata:
  name: attackmitigatorservice-public
  labels:
    app:  attackmitigatorservice
spec:
  type: NodePort
  selector:
    app: attackmitigatorservice
  ports:
  - name: grpc
    protocol: TCP
    port: 10002
    targetPort: 10002
---
+0 −21
Original line number Diff line number Diff line
@@ -19,10 +19,6 @@ spec:
        ports:
        - containerPort: 10001
        env:
        - name: DB_ENGINE
          value: "redis"
        - name: REDIS_DATABASE_ID
          value: "0"
        - name: LOG_LEVEL
          value: "DEBUG"
        readinessProbe:
@@ -51,20 +47,3 @@ spec:
  - name: grpc
    port: 10001
    targetPort: 10001
---
apiVersion: v1
kind: Service
metadata:
  name: centralizedattackdetectorservice-public
  labels:
    app:  centralizedattackdetectorservice
spec:
  type: NodePort
  selector:
    app: centralizedattackdetectorservice
  ports:
  - name: grpc
    protocol: TCP
    port: 10001
    targetPort: 10001
---
+0 −21
Original line number Diff line number Diff line
@@ -19,10 +19,6 @@ spec:
        ports:
        - containerPort: 10000
        env:
        - name: DB_ENGINE
          value: "redis"
        - name: REDIS_DATABASE_ID
          value: "0"
        - name: LOG_LEVEL
          value: "DEBUG"
        readinessProbe:
@@ -51,20 +47,3 @@ spec:
  - name: grpc
    port: 10000
    targetPort: 10000
---
apiVersion: v1
kind: Service
metadata:
  name: distributedattackdetectorservice-public
  labels:
    app:  distributedattackdetectorservice
spec:
  type: NodePort
  selector:
    app: distributedattackdetectorservice
  ports:
  - name: grpc
    protocol: TCP
    port: 10000
    targetPort: 10000
---
+1 −1
Original line number Diff line number Diff line
#!/bin/bash

./report_coverage_all.sh | grep --color -E -i "^attackmitigator/.*$|$"
./report_coverage_all.sh | grep --color -E -i "^l3_attackmitigator/.*$|$"
+1 −1
Original line number Diff line number Diff line
#!/bin/bash

./report_coverage_all.sh | grep --color -E -i "^centralizedattackdetector/.*$|$"
./report_coverage_all.sh | grep --color -E -i "^l3_centralizedattackdetector/.*$|$"
Loading