Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 490 for mywebhook (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		klog.Warningf("failed to set patch annotation for mutating webhook key %s; confugiration name: %s, webhook name: %s", w.patchAnnotationKey, w.configuration, w.webhook)
    	}
    }
    
    // MutationAuditAnnotation logs if a webhook invocation mutated the request object
    type MutationAuditAnnotation struct {
    	Configuration string `json:"configuration"`
    	Webhook       string `json:"webhook"`
    	Mutated       bool   `json:"mutated"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    	"k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/client-go/rest"
    	"k8s.io/component-base/tracing"
    )
    
    type webhookConverterFactory struct {
    	clientManager webhook.ClientManager
    }
    
    func newWebhookConverterFactory(serviceResolver webhook.ServiceResolver, authResolverWrapper webhook.AuthenticationInfoResolverWrapper) (*webhookConverterFactory, error) {
    	clientManager, err := webhook.NewClientManager(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

    	configurations, err := v.lister.List(labels.Everything())
    	if err != nil {
    		return []webhook.WebhookAccessor{}, err
    	}
    	return v.getValidatingWebhookConfigurations(configurations), nil
    }
    
    // getMutatingWebhookConfigurations returns the webhook accessors for a given list of
    // mutating webhook configurations.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/error.go

    limitations under the License.
    */
    
    package webhook
    
    import (
    	"fmt"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    )
    
    // ErrCallingWebhook is returned for transport-layer errors calling webhooks. It
    // represents a failure to talk to the webhook, not the webhook rejecting a
    // request.
    type ErrCallingWebhook struct {
    	WebhookName string
    	Reason      error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 18:36:22 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. internal/event/arn_test.go

    		{"", nil, true},
    		{"arn:minio:sqs:::", nil, true},
    		{"arn:minio:sqs::1:webhook:remote", nil, true},
    		{"arn:aws:sqs::1:webhook", nil, true},
    		{"arn:minio:sns::1:webhook", nil, true},
    		{"arn:minio:sqs::1:webhook", &ARN{TargetID{"1", "webhook"}, ""}, false},
    		{"arn:minio:sqs:us-east-1:1:webhook", &ARN{TargetID{"1", "webhook"}, "us-east-1"}, false},
    	}
    
    	for i, testCase := range testCases {
    		arn, err := parseARN(testCase.s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics/metrics.go

    type WebhookMetrics interface {
    	// RecordWebhookEvaluation increments with each round-trip of a webhook authorizer.
    	// result is one of:
    	// - canceled: the call invoking the webhook request was canceled
    	// - timeout: the webhook request timed out
    	// - error: the webhook response completed and was invalid
    	// - success: the webhook response completed and was well-formed
    	RecordWebhookEvaluation(ctx context.Context, name, result string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/options/authorization.go

    	authorizationWebhookConfigFileFlag      = "authorization-webhook-config-file"
    	authorizationWebhookVersionFlag         = "authorization-webhook-version"
    	authorizationWebhookAuthorizedTTLFlag   = "authorization-webhook-cache-authorized-ttl"
    	authorizationWebhookUnauthorizedTTLFlag = "authorization-webhook-cache-unauthorized-ttl"
    	authorizationPolicyFileFlag             = "authorization-policy-file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // Required.
      optional string expression = 2;
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    message MutatingWebhook {
      // The name of the admission webhook.
      // Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
      // "imagepolicy" is the name of the webhook, and kubernetes.io is the name
      // of the organization.
      // Required.
      optional string name = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    	"k8s.io/apiserver/pkg/admission/plugin/webhook"
    	webhookerrors "k8s.io/apiserver/pkg/admission/plugin/webhook/errors"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/generic"
    	webhookrequest "k8s.io/apiserver/pkg/admission/plugin/webhook/request"
    	endpointsrequest "k8s.io/apiserver/pkg/endpoints/request"
    	webhookutil "k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/component-base/tracing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top