-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource-scorpio-aaio.yaml
56 lines (54 loc) · 1.16 KB
/
resource-scorpio-aaio.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
apiVersion: apps/v1
kind: Deployment
metadata:
name: scorpioapp
labels:
app: scorpioapp
spec:
replicas: 1
selector:
matchLabels:
app: scorpioapp
template:
metadata:
labels:
app: scorpioapp
spec:
containers:
- name: scorpio
image: scorpiobroker/all-in-one-runner:java-kafka-3.0.9
resources:
limits:
memory: "2Gi"
cpu: "1.5"
requests:
memory: "500Mi"
cpu: ".5"
ports:
- containerPort: 9090
protocol: TCP
env:
- name: MYSETTINGS_POSTGRES_HOST
value: timescaledb.database.svc.cluster.local
- name: MYSETTINGS_POSTGRES_USERNAME
value: +POSTGRESUSER+
- name: MYSETTINGS_POSTGRES_PASSWORD
value: +POSTGRESPASSWORD+
- name: MYSETTINGS_POSTGRES_DATABASE_NAME
value: ngb
---
apiVersion: v1
kind: Service
metadata:
name: scorpioservice
labels:
app: scorpioapp
service: scorpioservice
spec:
selector:
app: scorpioapp
ports:
- protocol: TCP
port: 9090
targetPort: 9090
type: ClusterIP