summaryrefslogtreecommitdiff
path: root/data.d/k3s-master/manifests.d/tyilnet/personal-services/cgit/deployment.yaml
blob: 715a3f66fcc9dd27dca6dc0bb18b356b03beae84 (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
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: cgit
  namespace: personal-services
  labels:
    app.kubernetes.io/created-by: tyil
    app.kubernetes.io/managed-by: manual
    app.kubernetes.io/name: cgit
    app.kubernetes.io/part-of: personal-services
spec:
  replicas: 1
  selector:
    matchLabels:
      app.kubernetes.io/created-by: tyil
      app.kubernetes.io/managed-by: manual
      app.kubernetes.io/name: cgit
      app.kubernetes.io/part-of: personal-services
  strategy:
    type: RollingUpdate
  template:
    metadata:
      labels:
        app.kubernetes.io/created-by: tyil
        app.kubernetes.io/managed-by: manual
        app.kubernetes.io/name: cgit
        app.kubernetes.io/part-of: personal-services
    spec:
      nodeName: "mieshu.tyil.net"
      containers:
      - image: emarcs/nginx-cgit
        name: cgit
        ports:
        - containerPort: 80
        volumeMounts:
        - mountPath: /srv/git
          name: data
        - mountPath: /etc/cgitrc
          subPath: cgitrc
          name: config
      restartPolicy: Always
      volumes:
      - name: data
        hostPath:
          path: /mnt/pool/git
          type: DirectoryOrCreate
      - name: config
        configMap:
          name: cgit
...