feat: enable port 2222 for ssh

This commit is contained in:
2024-11-17 23:54:33 -05:00
parent cbd9c83fc1
commit a1f8624688
2 changed files with 12 additions and 3 deletions

View File

@@ -31,6 +31,8 @@ spec:
interval: 1m0s
releaseName: gitea
values:
strategy:
type: Recreate
service:
http:
type: LoadBalancer

View File

@@ -34,9 +34,13 @@ spec:
effect: "NoSchedule"
service:
type: LoadBalancer
ingressRoute:
dashboard:
enabled: false
ports:
git-ssh:
port: 2222
expose:
default: true
exposedPort: 2222
protocol: TCP
additionalArguments:
- "--api.insecure=true"
---
@@ -57,6 +61,9 @@ spec:
- name: websecure
port: 443
targetPort: websecure
- name: git-ssh
port: 2222
targetPort: git-ssh
selector:
app.kubernetes.io/name: traefik
---