Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 586 for webhook5 (0.66 sec)

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

    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook5"},
    						Webhooks:   []v1.ValidatingWebhook{{Name: "webhook5.1"}, {Name: "webhook5.2"}},
    					},
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook6"},
    						Webhooks:   []v1.ValidatingWebhook{{Name: "webhook6.1"}},
    					},
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook7"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 15:20:14 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager_test.go

    						Webhooks:   []v1.MutatingWebhook{{Name: "webhook6.1"}},
    					},
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook7"},
    						Webhooks:   []v1.MutatingWebhook{{Name: "webhook7.1"}},
    					},
    				},
    				[]*v1.MutatingWebhookConfiguration{
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook6"},
    						Webhooks:   []v1.MutatingWebhook{{Name: "webhook6.1-updated"}},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 15:20:14 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/openapi-webhooks.md

    !!! info
        Webhooks are available in OpenAPI 3.1.0 and above, supported by FastAPI `0.99.0` and above.
    
    ## An app with webhooks
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/webhook/webhook.go

    	for _, w := range wh.Webhooks {
    		if strings.HasSuffix(w.Name, "istio.io") {
    			return true
    		}
    	}
    	return false
    }
    
    func extractRevisions(wh *v1.MutatingWebhookConfiguration) []string {
    	revs := sets.New[string]()
    	if r, f := wh.Labels[label.IoIstioRev.Name]; f {
    		revs.Insert(r)
    	}
    	for _, webhook := range wh.Webhooks {
    		if webhook.NamespaceSelector != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/webhook.go

    		istiolog.Infof("HTTPS port is disabled, multiplexing webhooks on the httpAddr %v", args.ServerOptions.HTTPAddr)
    		return
    	}
    
    	tlsConfig := &tls.Config{
    		GetCertificate: s.getIstiodCertificate,
    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package webhook implements the audit.Backend interface using HTTP webhooks.
    package webhook
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"go.opentelemetry.io/otel/attribute"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/config"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/environment"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/openapi-webhooks.md

    Beachten Sie, dass Sie bei Webhooks tatsächlich keinen *Pfad* (wie `/items/`) deklarieren, sondern dass der Text, den Sie dort übergeben, lediglich eine **Kennzeichnung** des Webhooks (der Name des Events) ist. Zum Beispiel ist in `@app.webhooks.post("new-subscription")` der Webhook-Name `new-subscription`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:06:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook.go

    	// having a webhook error allows us to track the last actual webhook error for requests that
    	// are later cancelled or time out.
    	var webhookErr error
    	err := wait.ExponentialBackoffWithContext(ctx, retryBackoff, func(_ context.Context) (bool, error) {
    		webhookErr = webhookFn()
    		if shouldRetry(webhookErr) {
    			return false, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package webhook implements the authenticator.Token interface using HTTP webhooks.
    package webhook
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"strconv"
    	"time"
    
    	authenticationv1 "k8s.io/api/authentication/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
Back to top