blob: 288f6ab8acfb54a4e63c588c398c830b6aec85e1 (
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
|
apiVersion: apps/v1
kind: Deployment
metadata:
name: astaire
spec:
replicas: 1
selector:
matchLabels:
service: astaire
template:
metadata:
labels:
service: astaire
spec:
terminationGracePeriodSeconds: 120
containers:
- image: "ollivier/clearwater-astaire:latest"
imagePullPolicy: Always
name: astaire
ports:
- containerPort: 22
- containerPort: 11211
- containerPort: 11311
envFrom:
- configMapRef:
name: env-vars
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
livenessProbe:
tcpSocket:
port: 11311
periodSeconds: 10
failureThreshold: 9
readinessProbe:
tcpSocket:
port: 11311
volumeMounts:
- name: astairelogs
mountPath: /var/log/astaire
lifecycle:
preStop:
exec:
command: ["/bin/bash", "-c", "/usr/bin/pre-stop"]
- image: busybox
name: tailer
command: [ "tail", "-F", "/var/log/astaire/astaire_current.txt" ]
volumeMounts:
- name: astairelogs
mountPath: /var/log/astaire
volumes:
- name: astairelogs
emptyDir: {}
imagePullSecrets:
- name: ~
restartPolicy: Always
|