2017-06-07 14:11:05 +00:00
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
2017-09-17 09:17:37 +00:00
|
|
|
name: gorush
|
2017-09-22 03:22:10 +00:00
|
|
|
namespace: gorush
|
2017-06-07 14:11:05 +00:00
|
|
|
spec:
|
|
|
|
replicas: 3
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: gorush
|
|
|
|
tier: frontend
|
|
|
|
spec:
|
|
|
|
containers:
|
2017-09-22 03:22:10 +00:00
|
|
|
- image: appleboy/gorush
|
|
|
|
name: gorush
|
|
|
|
imagePullPolicy: Always
|
2017-06-07 14:11:05 +00:00
|
|
|
command: ["/gorush"]
|
2017-09-17 09:17:37 +00:00
|
|
|
args: ["-c", "config.yml", "-e", "redis", "--redis-addr", "redis:6379"]
|
2017-06-07 14:11:05 +00:00
|
|
|
ports:
|
|
|
|
- containerPort: 8088
|
2017-09-26 03:10:51 +00:00
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /healthz
|
|
|
|
port: 8088
|
|
|
|
initialDelaySeconds: 3
|
|
|
|
periodSeconds: 3
|