l3_attackmitigatorservice.yaml 1.09 KB
Newer Older
ldemarcosm's avatar
ldemarcosm committed
apiVersion: apps/v1
kind: Deployment
metadata:
ldemarcosm's avatar
ldemarcosm committed
spec:
  selector:
    matchLabels:
ldemarcosm's avatar
ldemarcosm committed
  template:
    metadata:
      labels:
ldemarcosm's avatar
ldemarcosm committed
    spec:
      terminationGracePeriodSeconds: 5
      containers:
      - name: server
        image: registry.gitlab.com/teraflow-h2020/controller/l3_attackmitigator:latest
ldemarcosm's avatar
ldemarcosm committed
        imagePullPolicy: Always
        ports:
        - containerPort: 10002
        env:
        - name: LOG_LEVEL
          value: "DEBUG"
        readinessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:10002"]
        livenessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:10002"]
        resources:
          requests:
            cpu: 250m
            memory: 512Mi
          limits:
            cpu: 700m
            memory: 1024Mi
---
apiVersion: v1
kind: Service
metadata:
ldemarcosm's avatar
ldemarcosm committed
spec:
  type: ClusterIP
  selector:
ldemarcosm's avatar
ldemarcosm committed
  ports:
  - name: grpc
    port: 10002
    targetPort: 10002