Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for csiNode (0.22 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSINode.yaml

    apiVersion: storage.k8s.io/v1
    kind: CSINode
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 991 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.CSINode.json

    {
      "kind": "CSINode",
      "apiVersion": "storage.k8s.io/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.CSINode.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 447 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSINode.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 447 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSINode.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 452 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.CSINode.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 452 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSINode.pb

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

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 452 bytes
    - Viewed (0)
  9. pkg/registry/storage/csinode/strategy_test.go

    		APIVersion: "v1beta1",
    		Resource:   "csinodes",
    	})
    	if Strategy.NamespaceScoped() {
    		t.Errorf("CSINode must not be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("CSINode should not allow create on update")
    	}
    
    	csiNode := getValidCSINode("valid-csinode")
    
    	Strategy.PrepareForCreate(ctx, csiNode)
    
    	errs := Strategy.Validate(ctx, csiNode)
    	if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/registry/storage/csinode/storage/storage_test.go

    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    	csiNode := validNewCSINode("foo")
    	csiNode.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo"}
    	test.TestCreate(
    		// valid
    		csiNode,
    		// invalid
    		&storageapi.CSINode{
    			ObjectMeta: metav1.ObjectMeta{Name: "*BadName!"},
    			Spec: storageapi.CSINodeSpec{
    				Drivers: []storageapi.CSINodeDriver{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
Back to top