Newer
Older
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Lluis Gifre Renom
committed
name: l3-centralizedattackdetectorservice
Lluis Gifre Renom
committed
app: l3-centralizedattackdetectorservice
Lluis Gifre Renom
committed
app: l3-centralizedattackdetectorservice
spec:
terminationGracePeriodSeconds: 5
containers:
- name: server
image: labs.etsi.org:5050/tfs/controller/l3_centralizedattackdetector:latest
imagePullPolicy: Always
ports:
- containerPort: 10001
- containerPort: 9192
- name: LOG_LEVEL
value: "DEBUG"
- name: BATCH_SIZE
value: "256"
- name: CAD_CLASSIFICATION_THRESHOLD
value: "0.5"
- name: MONITORED_KPIS_TIME_INTERVAL_AGG
value: "60"
readinessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=:10001"]
livenessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=:10001"]
resources:
requests:
memory: 1024Mi
---
apiVersion: v1
kind: Service
metadata:
Lluis Gifre Renom
committed
name: l3-centralizedattackdetectorservice
labels:
app: l3-centralizedattackdetectorservice
Lluis Gifre Renom
committed
app: l3-centralizedattackdetectorservice
- name: metrics
protocol: TCP
port: 9192
targetPort: 9192
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: l3-centralizedattackdetectorservice-hpa
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: l3-centralizedattackdetectorservice
minReplicas: 1
maxReplicas: 10
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
behavior:
scaleDown:
stabilizationWindowSeconds: 120
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: tfs-l3-centralizedattackdetectorservice-metric
labels:
app: l3-centralizedattackdetectorservice
#release: prometheus
#release: prom # name of the release
# ( VERY IMPORTANT: You need to know the correct release name by viewing
# the servicemonitor of Prometheus itself: Without the correct name,
# Prometheus cannot identify the metrics of the Flask app as the target.)
spec:
selector:
matchLabels:
# Target app service
#namespace: tfs
app: l3-centralizedattackdetectorservice # same as above
#release: prometheus # same as above
endpoints:
- port: metrics # named port in target app
scheme: http
path: /metrics # path to scrape
interval: 5s # scrape interval
namespaceSelector:
any: false
matchNames:
- tfs # namespace where the app is running