Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for clustertrustbundles (0.19 sec)

  1. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    // 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 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/api/certificates/v1alpha1/types_swagger_doc_generated.go

    var map_ClusterTrustBundle = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. api/discovery/apis__certificates.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "certificates.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "ClusterTrustBundle",
          "name": "clustertrustbundles",
          "namespaced": false,
          "singularName": "clustertrustbundle",
          "storageVersionHash": "XGGGW2kGm+w=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 497 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/registry/certificates/clustertrustbundle/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package clustertrustbundle provides Registry interface and its RESTStorage
    // implementation for storing ClusterTrustBundle objects.
    package clustertrustbundle // import "k8s.io/kubernetes/pkg/registry/certificates/clustertrustbundle"
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/registry/certificates/clustertrustbundle/storage/storage_test.go

    	etcdStorage, server := registrytest.NewEtcdStorageForResource(t, certificates.SchemeGroupVersion.WithResource("clustertrustbundles").GroupResource())
    	restOptions := generic.RESTOptions{
    		StorageConfig:           etcdStorage,
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 1,
    		ResourcePrefix:          "clustertrustbundles",
    	}
    	storage, err := NewREST(restOptions)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top