1234567891011121314151617181920 |
- ---
- apiVersion: networking.k8s.io/v1
- kind: Ingress
- metadata:
- name: nextcloud
- namespace: nextcloud
- annotations:
- traefik.ingress.kubernetes.io/router.entrypoints: websecure
- spec:
- rules:
- - host: nextcloud.jibby.org
- http:
- paths:
- - path: /
- pathType: Prefix
- backend:
- service:
- name: nextcloud
- port:
- number: 8080
|