Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for Namespaced (0.24 sec)

  1. 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)
  2. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Service Catalog
    
    The Service Plan Defaults feature is still under active development.
    We continue to improve the UX for the svcat CLI, specifically filling in gaps for the new Namespaced Service Broker feature.
    
    ### SIG Storage
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    						{
    							Rule: "self.if > 0",
    						},
    						{
    							Rule: "self.namespace > 0",
    						},
    						{
    							Rule: "self.unknownProp > 0",
    						},
    					},
    					Properties: map[string]apiextensions.JSONSchemaProps{
    						"if": {
    							Type: "integer",
    						},
    						"namespace": {
    							Type: "integer",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// 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.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.9.md

      For more information, see [#47131](https://github.com/kubernetes/kubernetes/issues/47131)
    
    *   If a namespaced resource is owned by a cluster scoped resource, and the namespaced dependent is processed before the cluster scoped owner has ever been observed by the garbage collector, the dependent will be erroneously deleted.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.15.md

    - Object count quota is now supported for namespaced custom resources using the `count/<resource>.<group>` syntax. ([#72384](https://github.com/kubernetes/kubernetes/pull/72384), [@zhouhaibing089](https://github.com/zhouhaibing089))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  10. 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)
Back to top