Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 586 for webhook5 (0.13 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"sideEffects":             "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// Webhooks that specify this option *must* be idempotent, and hence able to process objects they previously admitted.
    	// Note:
    	// * the number of additional invocations is not guaranteed to be exactly one.
    	// * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. pkg/webhooks/monitoring.go

    		"webhook_patch_attempts_total",
    		"Webhook patching attempts",
    	)
    
    	metricWebhookPatchRetries = monitoring.NewSum(
    		"webhook_patch_retries_total",
    		"Webhook patching retries",
    	)
    
    	metricWebhookPatchFailures = monitoring.NewSum(
    		"webhook_patch_failures_total",
    		"Webhook patching total failures",
    	)
    )
    
    const (
    	// webhook patching failure reasons
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/sidecarinjector.go

    			// No leader election - different istiod revisions will patch their own cert.
    			// update webhook configuration by watching the cabundle
    			patcher, err := webhooks.NewWebhookCertPatcher(s.kubeClient, args.Revision, webhookName, s.istiodCertBundleWatcher)
    			if err != nil {
    				log.Errorf("failed to create webhook cert patcher: %v", err)
    				return nil
    			}
    
    			go patcher.Run(stop)
    			return nil
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. manifests/charts/base/templates/default.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
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Allowed values are "Never" and "IfNeeded".
      //
      // Never: the webhook will not be called more than once in a single admission evaluation.
      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
      // if the object being admitted is modified by other admission plugins after the initial webhook call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/default.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
    - 1.6K bytes
    - Viewed (0)
  8. pkg/revisions/default_watcher_test.go

    	client.RunAndWait(stop)
    	go w.Run(stop)
    	whc := clienttest.Wrap(t, w.webhooks)
    	expectRevision(t, w, "")
    	// change default to "red"
    	whc.CreateOrUpdate(webhook("red"))
    	expectRevision(t, w, "red")
    
    	// change default to "green"
    	whc.CreateOrUpdate(webhook("green"))
    	expectRevision(t, w, "green")
    
    	// remove default
    	whc.Delete(defaultTagWebhookName, "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 23 17:46:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. 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)
  10. pkg/apis/admissionregistration/validation/validation.go

    	names := sets.NewString()
    	for _, hook := range webhooks {
    		if names.Has(hook.Name) {
    			return false
    		}
    		names.Insert(hook.Name)
    	}
    	return true
    }
    
    // mutatingHasNoSideEffects returns true if all webhooks have no side effects
    func mutatingHasNoSideEffects(webhooks []admissionregistration.MutatingWebhook) bool {
    	for _, hook := range webhooks {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top