apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: gitea-ingress namespace: gitea annotations: cert-manager.io/cluster-issuer: letsencrypt-production kubernetes.io/ingress.class: nginx-external acme.cert-manager.io/http01-edit-in-place: "true" nginx.ingress.kubernetes.io/configuration-snippet: | rewrite ^/metrics(/?)$ https://git.halis.io/$1 permanent; spec: tls: - hosts: - git.halis.io secretName: git-halis-io-tls ingressClassName: nginx-external rules: - host: git.halis.io http: paths: - path: / pathType: Prefix backend: service: name: gitea-svc port: number: 80