Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for proxyEnv (0.24 sec)

  1. pkg/apis/core/types.go

    type ReplicationControllerList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	Items []ReplicationController
    }
    
    const (
    	// ClusterIPNone - do not assign a cluster IP
    	// no proxying required and no environment variables should be created for pods
    	ClusterIPNone = "None"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ServiceList holds a list of services.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// ServiceTypeExternalName means a service consists of only a reference to
    	// an external name that kubedns or equivalent will return as a CNAME
    	// record, with no exposing or proxying of any pods involved.
    	ServiceTypeExternalName ServiceType = "ExternalName"
    )
    
    // ServiceInternalTrafficPolicy describes how nodes distribute service traffic they
    // receive on the ClusterIP.
    // +enum
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    optionally be specified, as describe above).  Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required.  Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // empty string (""), or a valid IP address. Setting this to "None" makes a
      // "headless service" (no virtual IP), which is useful when direct endpoint
      // connections are preferred and proxying is not required.  Only applies to
      // types ClusterIP, NodePort, and LoadBalancer. If this field is specified
      // when creating a Service of type ExternalName, creation will fail. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Support for proxying a request to a peer kube-apiserver if the local apiserver is not able to serve it due to version skew or in the case the requested api is disabled on the local apiserver ([#117740](https://github.com/kubernetes/kubernetes/pull/117740), [@Richaba...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top