Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for webhookClientConfig (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	//   is needed for this option. This requires spec.preserveUnknownFields to be false.
    	Strategy ConversionStrategyType
    
    	// `webhookClientConfig` is the instructions for how to call the webhook if strategy is `Webhook`.
    	WebhookClientConfig *WebhookClientConfig
    
    	// ConversionReviewVersions is an ordered list of preferred `ConversionReview`
    	// versions the Webhook expects. API server will try to use first version in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	Strategy ConversionStrategyType `json:"strategy" protobuf:"bytes,1,name=strategy"`
    
    	// webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`.
    	// Required when `strategy` is set to `Webhook`.
    	// +optional
    	WebhookClientConfig *WebhookClientConfig `json:"webhookClientConfig,omitempty" protobuf:"bytes,2,name=webhookClientConfig"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    							Served:  true,
    							Storage: false,
    						},
    					},
    					Conversion: &apiextensions.CustomResourceConversion{
    						Strategy: apiextensions.ConversionStrategyType("Webhook"),
    						WebhookClientConfig: &apiextensions.WebhookClientConfig{
    							Service: &apiextensions.ServiceReference{
    								Name:      "n",
    								Namespace: "ns",
    								Port:      0,
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. pkg/webhooks/validation/controller/controller_test.go

    			Name: webhookName,
    			Labels: map[string]string{
    				label.IoIstioRev.Name: revision,
    			},
    		},
    		Webhooks: []admission.ValidatingWebhook{{
    			Name: "hook0",
    			ClientConfig: admission.WebhookClientConfig{Service: &admission.ServiceReference{
    				Namespace: namespace,
    				Name:      istiod,
    				Path:      &[]string{"/hook0"}[0],
    			}},
    			Rules: []admission.RuleWithOperations{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    )
    
    // Analyze implements Analyzer
    func (s *ExternalControlPlaneAnalyzer) Analyze(c analysis.Context) {
    	reportWebhookURL := func(r *resource.Instance, hName string, clientConf v1.WebhookClientConfig) {
    		// If defined, it means that an external istiod has been adopted
    		if clientConf.URL != nil {
    			result, err := lintWebhookURL(*clientConf.URL)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

          }
        ],
        "selectableFields": [
          {
            "jsonPath": "jsonPathValue"
          }
        ],
        "conversion": {
          "strategy": "strategyValue",
          "webhookClientConfig": {
            "url": "urlValue",
            "service": {
              "namespace": "namespaceValue",
              "name": "nameValue",
              "path": "pathValue",
              "port": 4
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // List of ValidatingWebhookConfiguration.
      repeated ValidatingWebhookConfiguration items = 2;
    }
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    message WebhookClientConfig {
      // `url` gives the location of the webhook, in standard URL form
      // (`scheme://host:port/path`). Exactly one of `url` or `service`
      // must be specified.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

        format: formatValue
        name: nameValue
        priority: 5
        type: typeValue
      conversion:
        conversionReviewVersions:
        - conversionReviewVersionsValue
        strategy: strategyValue
        webhookClientConfig:
          caBundle: Ag==
          service:
            name: nameValue
            namespace: namespaceValue
            path: pathValue
            port: 4
          url: urlValue
      group: groupValue
      names:
        categories:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    func (m *WebhookClientConfig) Reset()      { *m = WebhookClientConfig{} }
    func (*WebhookClientConfig) ProtoMessage() {}
    func (*WebhookClientConfig) Descriptor() ([]byte, []int) {
    	return fileDescriptor_3623d6c0bd238430, []int{25}
    }
    func (m *WebhookClientConfig) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // List of ValidatingWebhookConfiguration.
      repeated ValidatingWebhookConfiguration items = 2;
    }
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    message WebhookClientConfig {
      // `url` gives the location of the webhook, in standard URL form
      // (`scheme://host:port/path`). Exactly one of `url` or `service`
      // must be specified.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top