Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for namespace_b (0.34 sec)

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

    pod to consume resource files specifying a different namespace than the one the pod is running in. ([#44862](https://github.com/kubernetes/kubernetes/pull/44862), [@liggitt](https://github.com/liggitt))
    
        * Kubectl commands run inside a pod using a kubeconfig file now use the namespace specified in the kubeconfig file, instead of using the pod namespace. If no kubeconfig file is used, or the kubeconfig does not specify a namespace, the pod namespace is still used as a fallback. ([#...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  4. 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)
  5. pkg/proxy/iptables/proxier_test.go

    		}
    		prevProbability = currProbability
    	}
    }
    
    func makeTestService(namespace, name string, svcFunc func(*v1.Service)) *v1.Service {
    	svc := &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    		Spec:   v1.ServiceSpec{},
    		Status: v1.ServiceStatus{},
    	}
    	svcFunc(svc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Addon manager supports HA masters. ([#55782](https://github.com/kubernetes/kubernetes/pull/55782), [@x13n](https://github.com/x13n))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Namespace)(nil), (*core.Namespace)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Namespace_To_core_Namespace(a.(*v1.Namespace), b.(*core.Namespace), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Namespace)(nil), (*v1.Namespace)(nil), func(a, b interface{}, scope conversion.Scope) error {
    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. CHANGELOG/CHANGELOG-1.21.md

    ### API Change
    
    - 1. PodAffinityTerm includes a namespaceSelector field to allow selecting eligible namespaces based on their labels. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    * kubectl commands run inside a pod using a kubeconfig file now use the namespace specified in the kubeconfig file, instead of using the pod namespace. If no kubeconfig file is used, or the kubeconfig does not specify a namespace, the pod namespace is still used as a fallback. ([#44570](https://github.com/kubernetes/kubernetes/pull/44570), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. 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)
Back to top