-
Notifications
You must be signed in to change notification settings - Fork 24
/
kafka-1-deployment.yaml
57 lines (56 loc) · 1.33 KB
/
kafka-1-deployment.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
57
apiVersion: apps/v1
kind: Deployment
metadata:
name: kafka-1-deployment
spec:
replicas: 1
selector:
matchLabels:
component: kafka-1
template:
metadata:
labels:
component: kafka-1
spec:
containers:
- name: kafka-1
image: pharosproduction/kafka_k8s:v1
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
ports:
- containerPort: 9092
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: KAFKA_ADVERTISED_PORT
value: "9092"
- name: KAFKA_ZOOKEEPER_CONNECT
value: zookeeper-ip-service:2181
- name: KAFKA_ADVERTISED_PORT
value: "9092"
- name: KAFKA_ADVERTISED_HOST_NAME
value: $(MY_POD_IP)
tty: true
livenessProbe:
exec:
command:
- /opt/check.sh
initialDelaySeconds: 30
periodSeconds: 30
readinessProbe:
exec:
command:
- /opt/check.sh
initialDelaySeconds: 30
periodSeconds: 5
# command:
# - /bin/bash
imagePullSecrets:
- name: regcred