Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for apiGroup (0.2 sec)

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

    	}
    	apiGroup := ""
    	if dataSource.APIGroup != nil {
    		apiGroup = *dataSource.APIGroup
    	}
    	if len(apiGroup) == 0 && dataSource.Kind != "PersistentVolumeClaim" {
    		allErrs = append(allErrs, field.Invalid(fldPath, dataSource.Kind, "must be 'PersistentVolumeClaim' when referencing the default apiGroup"))
    	}
    	if len(apiGroup) > 0 && !allowInvalidAPIGroupInDataSourceOrRef {
    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/api/core/v1/types.go

    }
    
    type TypedObjectReference struct {
    	// APIGroup is the group for the resource being referenced.
    	// If APIGroup is not specified, the specified Kind must be in the core API group.
    	// For any other third-party types, APIGroup is required.
    	// +optional
    	APIGroup *string `json:"apiGroup" protobuf:"bytes,1,opt,name=apiGroup"`
    	// Kind is the type of resource being referenced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	VolumeAttributesClassName *string
    }
    
    type TypedObjectReference struct {
    	// APIGroup is the group for the resource being referenced.
    	// If APIGroup is not specified, the specified Kind must be in the core API group.
    	// For any other third-party types, APIGroup is required.
    	// +optional
    	APIGroup *string
    	// Kind is the type of resource being referenced
    	Kind string
    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/api/core/v1/types_swagger_doc_generated.go

    	"":         "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
    	"apiGroup": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
    	"kind":     "Kind is the type of resource being referenced",
    	"name":     "Name is the name of resource being referenced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    // +structType=atomic
    message TypedLocalObjectReference {
      // APIGroup is the group for the resource being referenced.
      // If APIGroup is not specified, the specified Kind must be in the core API group.
      // For any other third-party types, APIGroup is required.
      // +optional
      optional string apiGroup = 1;
    
      // Kind is the type of resource being referenced
      optional string kind = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
        verbs:
          - watch
          - list
      # Used by Calico for policy information.
      - apiGroups: [""]
        resources:
          - pods
          - namespaces
          - serviceaccounts
        verbs:
          - list
          - watch
      # The CNI plugin patches pods/status.
      - apiGroups: [""]
        resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_TypedLocalObjectReference_To_core_TypedLocalObjectReference(in *v1.TypedLocalObjectReference, out *core.TypedLocalObjectReference, s conversion.Scope) error {
    	out.APIGroup = (*string)(unsafe.Pointer(in.APIGroup))
    	out.Kind = in.Kind
    	out.Name = in.Name
    	return nil
    }
    
    // Convert_v1_TypedLocalObjectReference_To_core_TypedLocalObjectReference is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "apiGroup": {
                "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
                "type": "string"
              },
              "kind": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top