blob: c30bac040355fa4b32fe455be60ce8397122e7c5 (
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
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: homestead
labels:
app: homestead
spec:
replicas: 1
selector:
matchLabels:
service: homestead
template:
metadata:
labels:
app: homestead
service: homestead
snmp: enabled
spec:
containers:
#- image: "localhost:5000/homestead:clearwater/base:latest"
- image: "instance-1:5000/clearwater/homestead:latest"
imagePullPolicy: Always
name: homestead
ports:
- containerPort: 22
- containerPort: 8888
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", "8888"]
initialDelaySeconds: 60
readinessProbe:
exec:
command: ["/bin/bash", "/usr/share/kubernetes/liveness.sh", "8888"]
volumeMounts:
- name: homesteadlogs
mountPath: /var/log/homestead
- image: busybox
name: tailer
command: [ "tail", "-F", "/var/log/homestead/homestead_current.txt" ]
volumeMounts:
- name: homesteadlogs
mountPath: /var/log/homestead
volumes:
- name: homesteadlogs
emptyDir: {}
restartPolicy: Always
|