apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: mini-app labels: {{- include "gitea.labels" . | nindent 4 }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} spec: tls: - hosts: - {{ .Values.ingress.host | quote }} secretName: app-crt rules: - host: {{ .Values.ingress.host | quote }} http: paths: - path: / pathType: Prefix backend: service: name: app port: number: 80