Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,082 for patching (0.15 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    {{ $pilotVals := pick .Values.pilot "cni" -}}
    {{ $vals = set $vals "pilot" $pilotVals -}}
    {{ $vals | toPrettyJson | indent 4 }}
    
      # To disable injection: use omitSidecarInjectorConfigMap, which disables the webhook patching
      # and istiod webhook functionality.
      #
      # New fields should not use Values - it is a 'primary' config object, users should be able
      # to fine tune it or use it with kube-inject.
      config: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    {{ $pilotVals := pick .Values.pilot "cni" -}}
    {{ $vals = set $vals "pilot" $pilotVals -}}
    {{ $vals | toPrettyJson | indent 4 }}
    
      # To disable injection: use omitSidecarInjectorConfigMap, which disables the webhook patching
      # and istiod webhook functionality.
      #
      # New fields should not use Values - it is a 'primary' config object, users should be able
      # to fine tune it or use it with kube-inject.
      config: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_wild.txt

    ! go get -u=patch example.../b@upgrade
    stderr '^go: no modules to query for example\.\.\./b@upgrade because first path element contains a wildcard$'
    
    
    # Patching . causes a patch to example.net/a, which introduces a new match
    # for example.net/b/..., which is itself patched and causes another upgrade to
    # example.net/a, which is then patched again.
    
    go get -u=patch . example.../b@upgrade
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top