Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewInvalidWebhook (0.21 sec)

  1. pkg/config/analysis/analyzers/webhook/webhook.go

    					}
    				}
    			}
    			if len(matches) > 1 {
    				for match := range matches {
    					others := matches.Difference(sets.New(match))
    					context.Report(gvk.MutatingWebhookConfiguration, msg.NewInvalidWebhook(resources[match],
    						fmt.Sprintf("Webhook overlaps with others: %v. This may cause injection to occur twice.", sets.SortedList(others))))
    				}
    			}
    		}
    	}
    
    	// Next, check service references
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	return diag.NewMessage(
    		GatewayDuplicateCertificate,
    		r,
    		gateways,
    	)
    }
    
    // NewInvalidWebhook returns a new diag.Message based on InvalidWebhook.
    func NewInvalidWebhook(r *resource.Instance, error string) diag.Message {
    	return diag.NewMessage(
    		InvalidWebhook,
    		r,
    		error,
    	)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top