blob: 93e16f558923ce14d103e5f42cf283769f96ceec (
plain)
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
58
59
60
61
62
|
apiVersion: apps/v1
kind: Deployment
metadata:
name: sprout
spec:
replicas: 1
selector:
matchLabels:
service: sprout
template:
metadata:
labels:
service: sprout
snmp: enabled
spec:
initContainers:
- name: wait-on-ralf
image: busybox:1.28
command: ['sh', '-c', 'until nslookup ralf; do echo waiting for ralf to start ...; sleep 2; done']
- name: wait-on-chronos
image: busybox:1.28
command: ['sh', '-c', 'until nslookup chronos; do echo waiting for chronos to start ...; sleep 2; done']
- name: wait-on-homestead
image: busybox:1.28
command: ['sh', '-c', 'until nslookup homestead; do echo waiting for homestead to start ...; sleep 2; done']
containers:
- image: "ollivier/clearwater-sprout:latest"
imagePullPolicy: Always
name: sprout
ports:
- containerPort: 22
envFrom:
- configMapRef:
name: env-vars
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
livenessProbe:
exec:
command: ["/bin/bash", "/usr/share/kubernetes/liveness.sh", "5052 5054"]
initialDelaySeconds: 30
periodSeconds: 3
readinessProbe:
exec:
command: ["/bin/bash", "/usr/share/kubernetes/liveness.sh", "5052 5054"]
volumeMounts:
- name: sproutlogs
mountPath: /var/log/sprout
- image: busybox
name: tailer
command: [ "tail", "-F", "/var/log/sprout/sprout_current.txt" ]
volumeMounts:
- name: sproutlogs
mountPath: /var/log/sprout
volumes:
- name: sproutlogs
emptyDir: {}
imagePullSecrets:
- name: ~
restartPolicy: Always
|