InvalidRegexp
Message Name | InvalidRegexp |
Message Code | IST0122 |
Description | Invalid Regex |
Level | Warning |
This message occurs when an Istio resource contains an invalid regular expression.
Istio regular expressions use the RE2 regular expression syntax.
Example
You will receive this message:
Warning [IST0122] (VirtualService bad-match.default) Field "uri" regular expression invalid: "[A-Z" (error parsing regexp: missing closing ]: `[A-Z`)
when your cluster has following virtual service:
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: bad-match
spec:
hosts:
- "*"
gateways:
- bookinfo-gateway
http:
- match:
- uri:
regex: "[A-Z"
route:
- destination:
host: productpage
In this example, the regex [A-Z
does not follow the RE2 syntax.