Start working on gitea
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Adrien Reslinger 2020-07-11 00:22:58 +02:00
parent 42f9dcb6c8
commit 7670dfe469
5 changed files with 255 additions and 0 deletions

View file

@ -0,0 +1,24 @@
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: gitea
namespace: gitea
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
tls:
- hosts:
- gitea.local
secretName: ingress-secrets
rules:
- host: gitea.local
http:
paths:
- path: /
backend:
serviceName: gitea
servicePort: 443
- backend:
serviceName: gitea-ssh
servicePort: 22