30 lines
547 B
JSON
30 lines
547 B
JSON
{
|
|
"apiVersion": "traefik.io/v1alpha1",
|
|
"kind": "IngressRoute",
|
|
"metadata": {
|
|
"name": "intranet-web",
|
|
"namespace": "intranet"
|
|
},
|
|
"spec": {
|
|
"entryPoints": [
|
|
"websecure"
|
|
],
|
|
"routes": [
|
|
{
|
|
"kind": "Rule",
|
|
"match": "Host(`intranet.iamworkin.lan`)",
|
|
"priority": 100,
|
|
"services": [
|
|
{
|
|
"name": "intranet-web",
|
|
"port": 5300
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"tls": {
|
|
"secretName": "intranet-tls"
|
|
}
|
|
}
|
|
}
|