1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-12 22:40:32 +08:00

TUN-3451: Cloudflared tunnel ingress command

This commit is contained in:
Adam Chalmers
2020-10-08 13:00:32 -05:00
parent 407c9550d7
commit 86a7af3dc4
3 changed files with 54 additions and 17 deletions

View File

@@ -127,6 +127,14 @@ ingress:
service: https://localhost:8000
path: "*/subpath2"
- service: https://localhost:8001
`},
wantErr: true,
},
{
name: "Service must have a scheme",
args: args{rawYAML: `
ingress:
- service: localhost:8000
`},
wantErr: true,
},