mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-15 13:32:14 +11:00
21 lines
426 B
YAML
21 lines
426 B
YAML
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: git-ingress
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- git.example.com
|
|
secretName: git-secret-tls
|
|
rules:
|
|
- host: git.example.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
backend:
|
|
service:
|
|
name: git-service
|
|
port:
|
|
number: 3000
|