28 lines
614 B
YAML
28 lines
614 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: gorush
|
|
namespace: gorush
|
|
spec:
|
|
replicas: 3
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: gorush
|
|
tier: frontend
|
|
spec:
|
|
containers:
|
|
- image: appleboy/gorush
|
|
name: gorush
|
|
imagePullPolicy: Always
|
|
command: ["/gorush"]
|
|
args: ["-c", "config.yml", "-e", "redis", "--redis-addr", "redis:6379"]
|
|
ports:
|
|
- containerPort: 8088
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8088
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 3
|