Skip to content

Commit

Permalink
Add ingress for gitea
Browse files Browse the repository at this point in the history
Mostly used when we need to access the gitea directly from the
workstation from the debugger/vscode.
  • Loading branch information
chmouel committed Oct 10, 2023
1 parent f76aca3 commit e114245
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions hack/dev/kind/gitea/ingress-gitea.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: gitea-ingress
namespace: gitea
spec:
ingressClassName: nginx
rules:
- host: "gitea.paac-127-0-0-1.nip.io"
http:
paths:
- backend:
service:
name: "gitea"
port:
number: 3000
path: /
pathType: Prefix

0 comments on commit e114245

Please sign in to comment.