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