2019-03-27 14:16:04 +00:00
|
|
|
apiVersion: traefik.containo.us/v1alpha1
|
|
|
|
kind: IngressRoute
|
|
|
|
metadata:
|
|
|
|
name: simpleingressroute
|
2019-10-07 13:20:06 +00:00
|
|
|
namespace: default
|
2019-03-27 14:16:04 +00:00
|
|
|
spec:
|
2019-04-15 09:14:05 +00:00
|
|
|
entryPoints:
|
2019-03-27 14:16:04 +00:00
|
|
|
- web
|
|
|
|
routes:
|
2020-03-13 21:50:05 +00:00
|
|
|
- match: Host(`your.example.com`) && PathPrefix(`/notls`)
|
2019-03-27 14:16:04 +00:00
|
|
|
kind: Rule
|
|
|
|
services:
|
|
|
|
- name: whoami
|
|
|
|
port: 80
|
|
|
|
|
|
|
|
---
|
|
|
|
apiVersion: traefik.containo.us/v1alpha1
|
|
|
|
kind: IngressRoute
|
|
|
|
metadata:
|
|
|
|
name: ingressroutetls
|
2019-10-07 13:20:06 +00:00
|
|
|
namespace: default
|
2019-03-27 14:16:04 +00:00
|
|
|
spec:
|
2019-04-15 09:14:05 +00:00
|
|
|
entryPoints:
|
2019-03-27 14:16:04 +00:00
|
|
|
- websecure
|
|
|
|
routes:
|
2020-03-13 21:50:05 +00:00
|
|
|
- match: Host(`your.example.com`) && PathPrefix(`/tls`)
|
2019-03-27 14:16:04 +00:00
|
|
|
kind: Rule
|
|
|
|
services:
|
|
|
|
- name: whoami
|
|
|
|
port: 80
|
2019-07-19 09:52:04 +00:00
|
|
|
tls:
|
2020-02-17 10:04:04 +00:00
|
|
|
certResolver: myresolver
|