You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return elbv2model.TargetGroupSpec{}, errors.Errorf("TargetGroup port is empty. Are you using the correct service type?")
290
290
}
291
-
return elbv2model.TargetGroupSpec{}, errors.Errorf("TargetGroup port is empty. When using Instance targets, your service be must of type 'NodePort' or 'LoadBalancer'")
291
+
return elbv2model.TargetGroupSpec{}, errors.Errorf("TargetGroup port is empty. When using Instance targets, your service must be of type 'NodePort' or 'LoadBalancer'")
// for a given HTTPHeaderName, ALB rule can accept a list of values. However, gateway route headers only accept one value per name, and name cannot duplicate.
204
+
Values: []string{header.Value},
205
+
},
206
+
},
207
+
}
208
+
conditions=append(conditions, headerCondition...)
209
+
}
210
+
returnconditions
211
+
}
212
+
213
+
// buildGrpcMethodCondition - we handle regex and exact type in same way since regex is taken as-is
214
+
// Exact method type will not accept wildcards - this is checked by kubebuilder validation
215
+
// Regular expression method type only works with wildcard * and ? for now
0 commit comments