Newer
Older
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
env:
- name: INFLUXDB_DB
value: "monitoring"
- name: INFLUXDB_ADMIN_USER
value: "teraflow"
- name: INFLUXDB_ADMIN_PASSWORD
value: "teraflow"
- name: INFLUXDB_HTTP_AUTH_ENABLED
value: "True"
# readinessProbe:
# exec:
# command: ["curl", "-XGET", "localhost:8086/health"]
# livenessProbe:
# exec:
# command: ["curl", "-XGET", "localhost:8086/health"]
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: 7070
env:
- name: PORT
command: ["/bin/grpc_health_probe", "-addr=:7070"]
command: ["/bin/grpc_health_probe", "-addr=:7070"]
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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: 7070
targetPort: 7070
- 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: 7070
targetPort: 7070
- name: influxdb
protocol: TCP
port: 8086
targetPort: 8086