all repos — infra @ 068b268c425131400a07c0740f27f34a0fb93764

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
 27
 28
 29
 30
 31
 32
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
  annotations:
    cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
  ingressClassName: nginx
  tls:
    - hosts:
        - ani.place
      secretName: ani-place-tls
  rules:
  - host: ani.place
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: pixelfed
            port:
              number: 3535