Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for naMespace (0.4 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                  namespace:
                                    description: "Namespace is the namespace of the referenced
                                      object. When unspecified, the local namespace is
                                      inferred. \n Note that when a namespace different
                                      than the local namespace is specified, a ReferenceGrant
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                                  type: string
                                namespace:
                                  description: Namespace specifies the namespace of the
                                    given Service. If left empty, the rule will match
                                    within this policy's namespace.
                                  type: string
                              type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	LabelSelector *metav1.LabelSelector
    	// namespaces specifies a static list of namespace names that the term applies to.
    	// The term is applied to the union of the namespaces listed in this field
    	// and the ones selected by namespaceSelector.
    	// null or empty namespaces list and null namespaceSelector means "this pod's namespace".
    	// +optional
    	Namespaces []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. common-protos/k8s.io/api/core/v1/generated.proto

      // namespaces specifies a static list of namespace names that the term applies to.
      // The term is applied to the union of the namespaces listed in this field
      // and the ones selected by namespaceSelector.
      // null or empty namespaces list and null namespaceSelector means "this pod's namespace".
      // +optional
      repeated string namespaces = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"namespaces":        "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// namespaces specifies a static list of namespace names that the term applies to.
    	// The term is applied to the union of the namespaces listed in this field
    	// and the ones selected by namespaceSelector.
    	// null or empty namespaces list and null namespaceSelector means "this pod's namespace".
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // namespaces specifies a static list of namespace names that the term applies to.
      // The term is applied to the union of the namespaces listed in this field
      // and the ones selected by namespaceSelector.
      // null or empty namespaces list and null namespaceSelector means "this pod's namespace".
      // +optional
      // +listType=atomic
      repeated string namespaces = 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)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \"this pod's namespace\". An empty selector ({}) matches all namespaces."
              },
              "namespaces": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	// validate target configmap namespace
    	if source.Namespace == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("namespace"), "namespace must be set"))
    	} else {
    		for _, msg := range ValidateNameFunc(ValidateNamespaceName)(source.Namespace, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("namespace"), source.Namespace, msg))
    		}
    	}
    	// validate target configmap name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

              },
              "namespace": {
                "description": "namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".",
                "type": "string"
              },
              "scope": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
Back to top