all repos — infra @ c7665ddf891eb6c53ad28085d8287c51c99fd83c

infrastructure manifests and setup notes

apps/pixelfed/pixelfed.yaml (view raw)

 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
apiVersion: v1
kind: Service
metadata:
  name: pixelfed
spec:
  type: ExternalName
  externalName: sini
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: ani.place
  namespace: default
spec:
  ingressClassName: caddy
  rules:
  - host: ani.place
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: pixelfed
            port:
              number: 3535