Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CSINodeList (0.39 sec)

  1. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSINodeList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 17
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.17
    
    // CSINodeList is a collection of CSINode objects.
    type CSINodeList struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard list metadata
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	}
    	row.Cells = append(row.Cells, obj.Name, int64(len(obj.Spec.Drivers)), translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    func printCSINodeList(list *storage.CSINodeList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printCSINode(&list.Items[i], options)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/storage/v1.CSINodeDriver":                                                                   schema_k8sio_api_storage_v1_CSINodeDriver(ref),
    		"k8s.io/api/storage/v1.CSINodeList":                                                                     schema_k8sio_api_storage_v1_CSINodeList(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

            }
          },
          "required": [
            "name",
            "nodeID"
          ],
          "type": "object"
        },
        "io.k8s.api.storage.v1.CSINodeList": {
          "description": "CSINodeList is a collection of CSINode objects.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top