Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for clustertrustbundles (0.28 sec)

  1. staging/src/k8s.io/api/certificates/v1alpha1/generated.pb.go

    func (m *ClusterTrustBundle) Reset()      { *m = ClusterTrustBundle{} }
    func (*ClusterTrustBundle) ProtoMessage() {}
    func (*ClusterTrustBundle) Descriptor() ([]byte, []int) {
    	return fileDescriptor_f73d5fe56c015bb8, []int{0}
    }
    func (m *ClusterTrustBundle) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ClusterTrustBundle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. pkg/volume/projected/projected.go

    			}
    		case source.ClusterTrustBundle != nil:
    			allowEmpty := false
    			if source.ClusterTrustBundle.Optional != nil && *source.ClusterTrustBundle.Optional {
    				allowEmpty = true
    			}
    
    			var trustAnchors []byte
    			if source.ClusterTrustBundle.Name != nil {
    				var err error
    				trustAnchors, err = s.plugin.kvHost.GetTrustAnchorsByName(*source.ClusterTrustBundle.Name, allowEmpty)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pkg/apis/certificates/zz_generated.deepcopy.go

    func (in *ClusterTrustBundle) DeepCopyInto(out *ClusterTrustBundle) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Spec = in.Spec
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterTrustBundle.
    func (in *ClusterTrustBundle) DeepCopy() *ClusterTrustBundle {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1alpha1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ClusterTrustBundle) APILifecycleIntroduced() (major, minor int) {
    	return 1, 26
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    	}
    
    	testCases := []struct {
    		description string
    		bundle      *capi.ClusterTrustBundle
    		opts        ValidateClusterTrustBundleOptions
    		wantErrors  field.ErrorList
    	}{
    		{
    			description: "valid, no signer name",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: capi.ClusterTrustBundleSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb

    Taahir Ahmed <******@****.***> 1667850353 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 455 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 455 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 455 bytes
    - Viewed (0)
  9. pkg/registry/storagemigration/storagemigration/storage/storage.go

    )
    
    // REST is a RESTStorage for ClusterTrustBundle.
    type REST struct {
    	*genericregistry.Store
    }
    
    type StatusREST struct {
    	store *genericregistry.Store
    }
    
    var _ rest.StandardStorage = &REST{}
    var _ rest.TableConvertor = &REST{}
    var _ genericregistry.GenericStore = &REST{}
    
    // NewREST returns a RESTStorage object for ClusterTrustBundle objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/names.go

    }
    
    // ValidateClusterTrustBundleName checks that a ClusterTrustBundle name conforms
    // to the rules documented on the type.
    func ValidateClusterTrustBundleName(signerName string) func(name string, prefix bool) []string {
    	return func(name string, isPrefix bool) []string {
    		if signerName == "" {
    			if strings.Contains(name, ":") {
    				return []string{"ClusterTrustBundle without signer name must not have \":\" in its name"}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top