monitoring.yaml 1.03 KB
Newer Older
Javi Moreno's avatar
Javi Moreno committed
apiVersion: apps/v1
kind: Deployment
metadata:
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
  name: monitoring
Javi Moreno's avatar
Javi Moreno committed
spec:
  selector:
    matchLabels:
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
      app: monitoring
Javi Moreno's avatar
Javi Moreno committed
  template:
    metadata:
      labels:
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
        app: monitoring
Javi Moreno's avatar
Javi Moreno committed
    spec:
      terminationGracePeriodSeconds: 5
      containers:
      - name: server
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
        image: registry.gitlab.com/teraflow-h2020/controller/monitoring:latest
Javi Moreno's avatar
Javi Moreno committed
        ports:
        - containerPort: 8080
        env:
        - name: PORT
          value: "8080"
        readinessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:8080"]
        livenessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:8080"]
        resources:
          requests:
            cpu: 250m
            memory: 512Mi
          limits:
            cpu: 700m
            memory: 1024Mi
      imagePullSecrets:
      - name: regcred
---
apiVersion: v1
kind: Service
metadata:
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
  name: monitoring
Javi Moreno's avatar
Javi Moreno committed
spec:
  type: ClusterIP
  selector:
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
    app: monitoring
Javi Moreno's avatar
Javi Moreno committed
  ports:
  - name: grpc
Javi Moreno's avatar
Javi Moreno committed
    port: 8080
    targetPort: 8080