This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/miniflux/app/deployment.yaml

38 lines
740 B
YAML
Raw Normal View History

2021-08-27 18:32:20 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: miniflux
name: miniflux
spec:
replicas: 1
selector:
matchLabels:
app: minflux
strategy:
type: Recreate
template:
metadata:
labels:
app: minflux
spec:
containers:
- image: docker.io/miniflux/miniflux:2.0.32
name: minflux
- secretRef:
name: miniflux
ports:
- containerPort: 8080
livenessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 15
periodSeconds: 10
readinessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 15
periodSeconds: 10