Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for clustertrustbundles (0.24 sec)

  1. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    option go_package = "k8s.io/api/certificates/v1alpha1";
    
    // ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors
    // (root certificates).
    //
    // ClusterTrustBundle objects are considered to be readable by any authenticated
    // user in the cluster, because they can be mounted by pods using the
    // `clusterTrustBundle` projection.  All service accounts have read access to
    // ClusterTrustBundles by default.  Users who only have namespace-level access
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    			allowedName:                      "abc.com/xyz",
    			attributes: &testAttributes{
    				resource: certificatesapi.Resource("clustertrustbundles"),
    				oldObj: &certificatesapi.ClusterTrustBundle{
    					Spec: certificatesapi.ClusterTrustBundleSpec{},
    				},
    				obj: &certificatesapi.ClusterTrustBundle{
    					Spec: certificatesapi.ClusterTrustBundleSpec{},
    				},
    				operation: admission.Update,
    			},
    			allowed: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

    option go_package = "k8s.io/api/certificates/v1alpha1";
    
    // ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors
    // (root certificates).
    //
    // ClusterTrustBundle objects are considered to be readable by any authenticated
    // user in the cluster, because they can be mounted by pods using the
    // `clusterTrustBundle` projection.  All service accounts have read access to
    // ClusterTrustBundles by default.  Users who only have namespace-level access
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    			t.Fatalf("Bad bundle; diff (-got +want)\n%s", diff)
    		}
    	})
    
    	if err := kc.CertificatesV1alpha1().ClusterTrustBundles().Delete(ctx, ctb1.ObjectMeta.Name, metav1.DeleteOptions{}); err != nil {
    		t.Fatalf("Error while deleting the old CTB: %v", err)
    	}
    	if _, err := kc.CertificatesV1alpha1().ClusterTrustBundles().Create(ctx, ctb2, metav1.CreateOptions{}); err != nil {
    		t.Fatalf("Error while adding new CTB: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    		},
    		DeleteFunc: func(obj any) {
    			ctb, ok := obj.(*certificatesv1alpha1.ClusterTrustBundle)
    			if !ok {
    				tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    				if !ok {
    					return
    				}
    				ctb, ok = tombstone.Obj.(*certificatesv1alpha1.ClusterTrustBundle)
    				if !ok {
    					return
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. pkg/registry/storagemigration/storagemigration/strategy.go

    	svmvalidation "k8s.io/kubernetes/pkg/apis/storagemigration/validation"
    )
    
    // strategy implements behavior for ClusterTrustBundles.
    type strategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the create, update, and delete strategy for ClusterTrustBundles.
    var Strategy = strategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    var _ rest.RESTCreateStrategy = Strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/apis/certificates/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    type ClusterTrustBundleList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	// Items is a collection of ClusterTrustBundle objects
    	Items []ClusterTrustBundle
    }
    
    // MaxTrustBundleSize is the maximimum size of a single trust bundle field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. plugin/pkg/admission/certificates/ctbattest/admission.go

    }
    
    var clusterTrustBundleGroupResource = api.Resource("clustertrustbundles")
    
    func (p *Plugin) Validate(ctx context.Context, a admission.Attributes, _ admission.ObjectInterfaces) error {
    	if !p.enabled {
    		return nil
    	}
    	if a.GetResource().GroupResource() != clusterTrustBundleGroupResource {
    		return nil
    	}
    
    	newBundle, ok := a.GetObject().(*api.ClusterTrustBundle)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 16:26:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/volume/testing/volume_host.go

    	ctbList, err := f.kubeClient.CertificatesV1alpha1().ClusterTrustBundles().List(context.Background(), metav1.ListOptions{})
    	if err != nil {
    		return nil, fmt.Errorf("while listing all ClusterTrustBundles: %w", err)
    	}
    
    	fullSet := bytes.Buffer{}
    	for i, ctb := range ctbList.Items {
    		fullSet.WriteString(ctb.Spec.TrustBundle)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/default_storage_factory_builder.go

    		// apisstorage.Resource("csistoragecapacities").WithVersion("v1beta1"),
    		networking.Resource("ipaddresses").WithVersion("v1alpha1"),
    		networking.Resource("servicecidrs").WithVersion("v1alpha1"),
    		certificates.Resource("clustertrustbundles").WithVersion("v1alpha1"),
    		storage.Resource("volumeattributesclasses").WithVersion("v1alpha1"),
    		storagemigration.Resource("storagemigrations").WithVersion("v1alpha1"),
    	}
    
    	return &StorageFactoryConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top