Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wrong_revision (0.36 sec)

  1. pkg/webhooks/monitoring.go

    	metricWebhookPatchFailures = monitoring.NewSum(
    		"webhook_patch_failures_total",
    		"Webhook patching total failures",
    	)
    )
    
    const (
    	// webhook patching failure reasons
    	reasonWrongRevision         = "wrong_revision"
    	reasonLoadCABundleFailure   = "load_ca_bundle_failure"
    	reasonWebhookConfigNotFound = "webhook_config_not_found"
    	reasonWebhookEntryNotFound  = "webhook_entry_not_found"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/webhooks/webhookpatch_test.go

    -----END CERTIFICATE-----`)
    
    func TestMutatingWebhookPatch(t *testing.T) {
    	testRevision := "test-revision"
    	wrongRevision := "wrong-revision"
    	testRevisionLabel := map[string]string{label.IoIstioRev.Name: testRevision}
    	wrongRevisionLabel := map[string]string{label.IoIstioRev.Name: wrongRevision}
    	watcher := &keycertbundle.Watcher{}
    	watcher.SetAndNotify(nil, nil, caBundle0)
    	ts := []struct {
    		name        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 09:53:38 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top