Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvalidFilter (0.15 sec)

  1. pilot/pkg/config/kube/gateway/conditions.go

    	// InvalidParentRef indicates we could not refer to the parent we request
    	InvalidParentRef ConfigErrorReason = "InvalidParentReference"
    	// InvalidFilter indicates an issue with the filters
    	InvalidFilter ConfigErrorReason = "InvalidFilter"
    	// InvalidTLS indicates an issue with TLS settings
    	InvalidTLS ConfigErrorReason = ConfigErrorReason(k8s.ListenerReasonInvalidCertificateRef)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			}
    			vs.Mirrors = append(vs.Mirrors, mirror)
    		case k8s.HTTPRouteFilterURLRewrite:
    			vs.Rewrite = createRewriteFilter(filter.URLRewrite)
    		default:
    			return nil, &ConfigError{
    				Reason:  InvalidFilter,
    				Message: fmt.Sprintf("unsupported filter type %q", filter.Type),
    			}
    		}
    	}
    
    	if r.Timeouts != nil {
    		if r.Timeouts.Request != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top