Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reportWebhookPatchRetry (0.18 sec)

  1. pkg/webhooks/monitoring.go

    )
    
    func reportWebhookPatchAttempts(webhookConfigName string) {
    	metricWebhookPatchAttempts.
    		With(webhookConfigNameTag.Value(webhookConfigName)).
    		Increment()
    }
    
    func reportWebhookPatchRetry(webhookConfigName string) {
    	metricWebhookPatchRetries.
    		With(webhookConfigNameTag.Value(webhookConfigName)).
    		Increment()
    }
    
    func reportWebhookPatchFailure(webhookConfigName string, reason string) {
    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.go

    		return nil
    	}
    
    	if err != nil {
    		log.Errorf("patching webhook %s failed: %v", o.Name, err)
    		reportWebhookPatchRetry(o.Name)
    	}
    
    	return err
    }
    
    // patchMutatingWebhookConfig takes a webhookConfigName and patches the CA bundle for that webhook configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top