monitoring.yaml 2.45 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
        imagePullPolicy: Always
Javi Moreno's avatar
Javi Moreno committed
        ports:
        - containerPort: 8080
---
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







# apiVersion: apps/v1
# kind: Deployment
# metadata:
#   name: monitoring
# spec:
#   selector:
#     matchLabels:
#       app: monitoring
#   replicas: 1
#   template:
#     metadata:
#       labels:
#         app: monitoring
#     spec:
#       terminationGracePeriodSeconds: 5
#       containers:
#       - name: influxdb
#         image: influxdb:1.8
#         ports:
#         - containerPort: 8086
#         resources:
#           requests:
#             cpu: 250m
#             memory: 512Mi
#           limits:
#             cpu: 700m
#             memory: 1024Mi
#       - name: server
#         image: registry.gitlab.com/teraflow-h2020/controller/monitoring:latest
#         imagePullPolicy: Always
#         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:
#   name: monitoring
# spec:
#   type: ClusterIP
#   selector:
#     app: monitoring
#   ports:
#   - name: grpc
#     protocol: TCP
#     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