Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,390 for patching (0.17 sec)

  1. 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
    	reasonWrongRevision         = "wrong_revision"
    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. releasenotes/notes/44820.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: 
      - 44820
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 06:57:34 UTC 2023
    - 182 bytes
    - Viewed (0)
  3. pkg/webhooks/webhookpatch.go

    	// do not want to retry the task if these errors occur, they indicate that
    	// we should no longer be patching the given webhook
    	if kerrors.IsNotFound(err) || errors.Is(err, errWrongRevision) || errors.Is(err, errNoWebhookWithName) || errors.Is(err, errNotFound) {
    		return nil
    	}
    
    	if err != nil {
    		log.Errorf("patching webhook %s failed: %v", o.Name, err)
    		reportWebhookPatchRetry(o.Name)
    	}
    
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    if (!containsModule(moduleName)) {
                        /*
                         * Not patching an existing module. This case should be unusual. If it nevertheless
                         * happens, add on class-path or module-path if allowed, or keep patching otherwise.
                         * The latter case (keep patching) is okay if the main module will be defined later.
                         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pkg/controller/controller_ref_manager.go

    }
    
    // ReleasePod sends a patch to free the pod from the control of the controller.
    // It returns the error if the patching fails. 404 and 422 errors are ignored.
    func (m *PodControllerRefManager) ReleasePod(ctx context.Context, pod *v1.Pod) error {
    	logger := klog.FromContext(ctx)
    	logger.V(2).Info("Patching pod to remove its controllerRef", "pod", klog.KObj(pod), "gvk", m.controllerKind, "controller", m.Controller.GetName())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. manifests/charts/base/templates/default.yaml

              - extensions.istio.io
            apiVersions:
              - "*"
            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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/default.yaml

              - extensions.istio.io
            apiVersions:
              - "*"
            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.
    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. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

              - extensions.istio.io
            apiVersions:
              - "*"
            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.
    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. manifests/charts/istiod-remote/templates/validatingwebhookconfiguration.yaml

              - extensions.istio.io
            apiVersions:
              - "*"
            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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    					})
    				election.Run(clusterStopCh)
    				return nil
    			})
    		}
    		// Set up injection webhook patching for remote clusters we are controlling.
    		// The config cluster has this patching set up elsewhere. We may eventually want to move it here.
    		// We can not use leader election for webhook patching because each revision needs to patch its own
    		// webhook.
    		if shouldLead && !configCluster && m.caBundleWatcher != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top