Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 586 for webhook5 (0.14 sec)

  1. istioctl/pkg/tag/generate.go

    	if err != nil {
    		return "", fmt.Errorf("could not decode generated webhook: %w", err)
    	}
    	decodedWh := whObject.(*admitv1.MutatingWebhookConfiguration)
    	for i := range decodedWh.Webhooks {
    		decodedWh.Webhooks[i].ClientConfig.CABundle = []byte(config.CABundle)
    		if decodedWh.Webhooks[i].ClientConfig.Service != nil {
    			decodedWh.Webhooks[i].ClientConfig.Service.Path = &config.Path
    		}
    	}
    	if opts.WebhookName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/controller/controller.go

    		scope.Debugf("failurePolicy is Ignore, but webhook is not ready; not setting to Fail")
    		updateFailurePolicy = false
    	}
    	updated := current.DeepCopy()
    	for i := range updated.Webhooks {
    		updated.Webhooks[i].ClientConfig.CABundle = caBundle
    		if updateFailurePolicy {
    			updated.Webhooks[i].FailurePolicy = ptr.Of(kubeApiAdmission.Fail)
    		}
    	}
    
    	latest, err := c.webhooks.Update(updated)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. releasenotes/notes/webhook-ca-bundle.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue: []
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 06:39:27 UTC 2024
    - 237 bytes
    - Viewed (0)
  4. releasenotes/notes/crd-webhook-v1.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 18771
    - 18838
    releaseNotes:
     - |
      **Upgraded** the CRD and Webhook versions to `v1`.
    upgradeNotes:
     - title: Require Kubernetes 1.16+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 271 bytes
    - Viewed (0)
  5. releasenotes/notes/remove-post-install-webhook.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 29153
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 20:26:02 UTC 2020
    - 163 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    			reinvocationCtx.SetIsReinvoke()
    			for webhook, expectReinvoke := range tt.ExpectReinvokeWebhooks {
    				shouldReinvoke := reinvocationCtx.Value(PluginName).(*webhookReinvokeContext).ShouldReinvokeWebhook(fmt.Sprintf("test-webhooks/%s/0", webhook))
    				if expectReinvoke != shouldReinvoke {
    					t.Errorf("expected reinvocationContext.ShouldReinvokeWebhook(%s)=%t, but got %t", webhook, expectReinvoke, shouldReinvoke)
    				}
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. tests/integration/pilot/webhook_test.go

    	if err != nil {
    		return nil, fmt.Errorf("could not get validating webhook config %q: %v", name, err)
    	}
    	return whc, nil
    }
    
    func verifyValidatingWebhookConfiguration(c *kubeApiAdmission.ValidatingWebhookConfiguration) error {
    	if len(c.Webhooks) == 0 {
    		return errors.New("no webhook entries found")
    	}
    	for i, wh := range c.Webhooks {
    		if *wh.FailurePolicy != kubeApiAdmission.Fail {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 13:31:34 UTC 2023
    - 4.7K 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/webhooks/validation/controller/controller_test.go

    	go c.Run(controllerStop)
    	webhooks := clienttest.Wrap(t, c.webhooks)
    	fetch := func(name string) func() *admission.ValidatingWebhookConfiguration {
    		return func() *admission.ValidatingWebhookConfiguration {
    			return webhooks.Get(name, "")
    		}
    	}
    	// install adds the webhook config with fail open policy
    	webhooks.Create(unpatchedWebhookConfig)
    	// verify the webhook isn't updated if invalid config is accepted.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. .teamcity/pluginData/Check/plugin-settings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <settings>
      <webhooks enabled="true">
        <webhook url="https://gradle-bot.grdev.net/teamcity_slacktemplate" enabled="true" template="slack.com">
          <states>
            <state type="buildAddedToQueue" enabled="false" />
            <state type="buildRemovedFromQueue" enabled="true" />
            <state type="buildStarted" enabled="true" />
            <state type="changesLoaded" enabled="true" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 18 02:15:16 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top