Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Required (0.31 sec)

  1. pkg/apis/core/validation/validation.go

    	if nodeAffinity == nil {
    		return false, allErrs
    	}
    
    	if nodeAffinity.Required != nil {
    		allErrs = append(allErrs, ValidateNodeSelector(nodeAffinity.Required, fldPath.Child("required"))...)
    	} else {
    		allErrs = append(allErrs, field.Required(fldPath.Child("required"), "must specify required node constraints"))
    	}
    
    	return true, allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				invalid("status", "storedVersions"),
    				invalid("metadata", "name"),
    				invalid("spec", "versions"),
    				required("spec", "group"),
    				required("spec", "scope"),
    				required("spec", "names", "plural"),
    				required("spec", "names", "singular"),
    				required("spec", "names", "kind"),
    				required("spec", "names", "listKind"),
    			},
    		},
    		{
    			name: "bad names 01",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    type ISCSIVolumeSource struct {
    	// Required: iSCSI target portal
    	// the portal is either an IP or ip_addr:port if port is other than default (typically TCP ports 860 and 3260)
    	// +optional
    	TargetPortal string
    	// Required:  target iSCSI Qualified Name
    	// +optional
    	IQN string
    	// Required: iSCSI target lun number
    	// +optional
    	Lun int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    				Required: []string{"jsonPath"},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.",
                "type": "string"
              },
              "type": {
                "default": "",
                "description": "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "driver": {
                "default": "",
                "description": "driver is the name of the driver to use for this volume. Required.",
                "type": "string"
              },
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              "apiVersion": {
                "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.",
                "type": "string"
              },
              "kind": {
                "description": "Kind is the API kind the resources belong to. Required.",
                "type": "string"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "pathType",
              "backend"
            ],
            "type": "object"
          },
          "io.k8s.api.networking.v1.HTTPIngressRuleValue": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

          - get
          - list
          - watch
      # These permissions are only required for upgrade from v2.6, and can
      # be removed after upgrade or on fresh installations.
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - bgpconfigurations
          - bgppeers
        verbs:
          - create
          - update
      # These permissions are required for Calico CNI to perform IPAM allocations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.
    type VolumeNodeAffinity struct {
    	// required specifies hard node constraints that must be met.
    	Required *NodeSelector `json:"required,omitempty" protobuf:"bytes,1,opt,name=required"`
    }
    
    // PersistentVolumeReclaimPolicy describes a policy for end-of-life maintenance of persistent volumes.
    // +enum
    type PersistentVolumeReclaimPolicy string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top