aboutsummaryrefslogtreecommitdiff
path: root/grumpy/miniflux/deploy.yaml
blob: a75ca05a4314fcc78964678aee5854c15a69f920 (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
apiVersion: apps/v1
kind: Deployment
metadata:
  name: miniflux
  labels:
    app: miniflux
    db: pg
spec:
  selector:
    matchLabels:
      app: miniflux
  replicas: 1
  strategy:
    type: RollingUpdate
  template:
    metadata:
      labels:
        app: miniflux
        db: pg
    spec:
      containers:
        - name: miniflux-app
          image: registry.gitlab.com/grumps/grumpy-containers/miniflux:v0.2.0
          volumeMounts:
            - name: minifluxconf
              mountPath: "/etc/miniflux"
          ports:
            - name: https
              containerPort: 443
      imagePullSecrets:
        - name: regcred
      volumes:
        - name: minifluxconf
          secret:
            secretName: minifluxconf