Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for connectionInfo (0.28 sec)

  1. pkg/kubelet/client/kubelet_client.go

    	CertFile string
    	// Server requires TLS client certificate authentication
    	KeyFile string
    	// Trusted root certificates for server
    	CAFile string
    }
    
    // ConnectionInfo provides the information needed to connect to a kubelet
    type ConnectionInfo struct {
    	Scheme                         string
    	Hostname                       string
    	Port                           string
    	Transport                      http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		if c.ConnectionInfo.KubeConfigFile == nil || *c.ConnectionInfo.KubeConfigFile == "" {
    			allErrs = append(allErrs, field.Required(fldPath.Child("connectionInfo", "kubeConfigFile"), ""))
    		} else if !filepath.IsAbs(*c.ConnectionInfo.KubeConfigFile) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("connectionInfo", "kubeConfigFile"), *c.ConnectionInfo.KubeConfigFile, "must be an absolute path"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    						},
    					},
    				},
    			},
    			expectedErrList: field.ErrorList{field.Required(field.NewPath("connectionInfo"), "")},
    			knownTypes:      sets.NewString(string("Webhook")),
    			repeatableTypes: sets.NewString(string("Webhook")),
    		},
    		{
    			name: "connectionInfo should be one of InClusterConfig or KubeConfigFile",
    			configuration: api.AuthorizationConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	//     them allows the request
    	//   - Deny: reject the request without consulting subsequent authorizers
    	// Required, with no default.
    	FailurePolicy string
    
    	// ConnectionInfo defines how we talk to the webhook
    	ConnectionInfo WebhookConnectionInfo
    
    	// matchConditions is a list of conditions that must be met for a request to be sent to this
    	// webhook. An empty list of matchConditions matches all requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//   - Deny: reject the request without consulting subsequent authorizers
    	// Required, with no default.
    	FailurePolicy string `json:"failurePolicy"`
    
    	// ConnectionInfo defines how we talk to the webhook
    	ConnectionInfo WebhookConnectionInfo `json:"connectionInfo"`
    
    	// matchConditions is a list of conditions that must be met for a request to be sent to this
    	// webhook. An empty list of matchConditions matches all requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.deepcopy.go

    func (in *WebhookConfiguration) DeepCopyInto(out *WebhookConfiguration) {
    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    	out.MatchConditionSubjectAccessReviewVersion = in.MatchConditionSubjectAccessReviewVersion
    	out.FailurePolicy = in.FailurePolicy
    	if err := Convert_v1alpha1_WebhookConnectionInfo_To_apiserver_WebhookConnectionInfo(&in.ConnectionInfo, &out.ConnectionInfo, s); err != nil {
    		return err
    	}
    	out.MatchConditions = *(*[]apiserver.WebhookMatchCondition)(unsafe.Pointer(&in.MatchConditions))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.conversion.go

    	out.MatchConditionSubjectAccessReviewVersion = in.MatchConditionSubjectAccessReviewVersion
    	out.FailurePolicy = in.FailurePolicy
    	if err := Convert_v1beta1_WebhookConnectionInfo_To_apiserver_WebhookConnectionInfo(&in.ConnectionInfo, &out.ConnectionInfo, s); err != nil {
    		return err
    	}
    	out.MatchConditions = *(*[]apiserver.WebhookMatchCondition)(unsafe.Pointer(&in.MatchConditions))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//   - Deny: reject the request without consulting subsequent authorizers
    	// Required, with no default.
    	FailurePolicy string `json:"failurePolicy"`
    
    	// ConnectionInfo defines how we talk to the webhook
    	ConnectionInfo WebhookConnectionInfo `json:"connectionInfo"`
    
    	// matchConditions is a list of conditions that must be met for a request to be sent to this
    	// webhook. An empty list of matchConditions matches all requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/zz_generated.deepcopy.go

    func (in *WebhookConfiguration) DeepCopyInto(out *WebhookConfiguration) {
    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top