Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 490 for mywebhook (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    func (m *mutatingWebhookConfigurationManager) getConfiguration() ([]webhook.WebhookAccessor, error) {
    	configurations, err := m.lister.List(labels.Everything())
    	if err != nil {
    		return []webhook.WebhookAccessor{}, err
    	}
    	return m.getMutatingWebhookConfigurations(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.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load_test.go

    			},
    		},
    		{
    			name: "v1beta1 - defaults",
    			data: []byte(`{
    "apiVersion":"apiserver.config.k8s.io/v1beta1",
    "kind":"AuthorizationConfiguration",
    "authorizers":[{"type":"Webhook","name":"default","webhook":{}}]}`),
    			expectConfig: &api.AuthorizationConfiguration{
    				Authorizers: []api.AuthorizerConfiguration{{
    					Type: "Webhook",
    					Name: "default",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	// configuration and does not provide a globally unique identity, if a unique identity is
    	// needed, use GetUID.
    	GetName() string
    	// GetClientConfig gets the webhook ClientConfig field.
    	GetClientConfig() v1.WebhookClientConfig
    	// GetRules gets the webhook Rules field.
    	GetRules() []v1.RuleWithOperations
    	// GetFailurePolicy gets the webhook FailurePolicy field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1/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
    - 24.4K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/options_test.go

    		"--audit-policy-file=/policy",
    		"--audit-webhook-config-file=/webhook-config",
    		"--audit-webhook-mode=blocking",
    		"--audit-webhook-batch-buffer-size=42",
    		"--audit-webhook-batch-max-size=43",
    		"--audit-webhook-batch-max-wait=1s",
    		"--audit-webhook-batch-throttle-enable=false",
    		"--audit-webhook-batch-throttle-qps=43.5",
    		"--audit-webhook-batch-throttle-burst=44",
    		"--audit-webhook-truncate-enabled=true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/authentication_info_resolver.go

    	"sync/atomic"
    
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/testcerts"
    	"k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/client-go/rest"
    )
    
    // Wrapper turns an AuthenticationInfoResolver into a AuthenticationInfoResolverWrapper that unconditionally
    // returns the given AuthenticationInfoResolver.
    func Wrapper(r webhook.AuthenticationInfoResolver) func(webhook.AuthenticationInfoResolver) webhook.AuthenticationInfoResolver {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 18 18:49:55 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. internal/config/lambda/event/arn_test.go

    		{"arn:minio:s3-object-lambda::1:webhook:remote", nil, true},
    		{"arn:aws:s3-object-lambda::1:webhook", nil, true},
    		{"arn:minio:sns::1:webhook", nil, true},
    		{"arn:minio:s3-object-lambda::1:webhook", &ARN{TargetID{"1", "webhook"}, ""}, false},
    		{"arn:minio:s3-object-lambda: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 Mar 07 16:12:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/validatingwebhookconfiguration.yaml

            resources:
              - "*"
        {{- if .Values.base.validationCABundle }}
        # Disable webhook controller in Pilot to stop patching it
        failurePolicy: Fail
        {{- else }}
        # Fail open until the validation webhook is ready. The webhook controller
        # will update this to `Fail` and patch in the `caBundle` when the webhook
        # endpoint is ready.
        failurePolicy: Ignore
        {{- end }}
        sideEffects: None
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authorizer/reload.go

    			}
    			webhookAuthorizer, err := webhook.New(clientConfig,
    				configuredAuthorizer.Webhook.SubjectAccessReviewVersion,
    				configuredAuthorizer.Webhook.AuthorizedTTL.Duration,
    				configuredAuthorizer.Webhook.UnauthorizedTTL.Duration,
    				*r.initialConfig.WebhookRetryBackoff,
    				decisionOnError,
    				configuredAuthorizer.Webhook.MatchConditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/webhook_server.go

    	"k8s.io/apiserver/pkg/admission/plugin/webhook/testcerts"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    // NewTestServerWithHandler returns a webhook test HTTPS server
    // which uses given handler function to handle requests
    func NewTestServerWithHandler(t testing.TB, handler func(http.ResponseWriter, *http.Request)) *httptest.Server {
    	// Create the test webhook server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 15 11:11:25 UTC 2021
    - 6.3K bytes
    - Viewed (0)
Back to top