This commit is contained in:
DeveloperDurp 2025-12-29 11:30:20 -06:00
parent f90b412149
commit c670446551

View file

@ -1,5 +1,49 @@
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata:
name: gitlab-ssh
spec:
ports:
- name: app
port: 9022
protocol: TCP
targetPort: 9022
clusterIP: None
type: ClusterIP
---
apiVersion: v1
kind: Endpoints
metadata:
name: gitlab-ssh
subsets:
- addresses:
- ip: 192.168.21.200
ports:
- name: app
port: 9022
protocol: TCP
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: gitlab-ssh-ingress
spec:
entryPoints:
- gitlab-ssh
routes:
- match: HostSNI(`*`)
kind: Rule
services:
- name: gitlab-ssh
port: 9022
tls:
secretName: gitlab-tls
---
apiVersion: v1
kind: Service
metadata: metadata:
name: gitlab name: gitlab
spec: spec: