monitoring.yaml 1.76 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
  replicas: 1
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: influxdb
      #   image: influxdb:1.8
      #   ports:
      #   - containerPort: 8086
      #   resources:
      #     requests:
      #       cpu: 250m
      #       memory: 512Mi
      #     limits:
      #       cpu: 700m
      #       memory: 1024Mi
Javi Moreno's avatar
Javi Moreno committed
      - name: server
Sergio Gonzalez Diaz's avatar
 
Sergio Gonzalez Diaz committed
        image: registry.gitlab.com/teraflow-h2020/controller/monitoring:latest
        imagePullPolicy: Always
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
Javi Moreno's avatar
Javi Moreno committed
---
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
  # - name: influxdb
  #   protocol: TCP
  #   port: 8086
  #   targetPort: 8086
# ---
# apiVersion: v1
# kind: Service
# metadata:
#   name: monitoring-public
# spec:
#   type: NodePort
#   selector:
#     app: monitoring
#   ports:
#   - name: grpc
#     protocol: TCP
#     port: 8080
#     targetPort: 8080
#   - name: influxdb
#     protocol: TCP
#     port: 8086
#     targetPort: 8086