Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for proxyEnv (0.26 sec)

  1. pkg/kubelet/server/server.go

    		podUID:       types.UID(req.PathParameter("uid")),
    	}
    }
    
    type responder struct{}
    
    func (r *responder) Error(w http.ResponseWriter, req *http.Request, err error) {
    	klog.ErrorS(err, "Error while proxying request")
    	http.Error(w, err.Error(), http.StatusInternalServerError)
    }
    
    // proxyStream proxies stream to url.
    func proxyStream(w http.ResponseWriter, r *http.Request, url *url.URL) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    	var proxy proxyResult
    	gr, err := getObjectNInfo(ctx, bucket, object, rs, r.Header, opts)
    	if err != nil {
    		var (
    			reader *GetObjectReader
    			perr   error
    		)
    		// avoid proxying if version is a delete marker
    		if !isErrMethodNotAllowed(err) && !(gr != nil && gr.ObjInfo.DeleteMarker) {
    			proxytgts := getProxyTargets(ctx, bucket, object, opts)
    			if !proxytgts.Empty() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.23.md

    ### CVE-2022-3294: Node address isn't always verified when proxying
    
    A security issue was discovered in Kubernetes where users may have access to secure endpoints in the control plane network. Kubernetes clusters are only affected if an untrusted user can to modify Node objects and send requests proxying through them.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

    ### CVE-2022-3294: Node address isn't always verified when proxying
    
    A security issue was discovered in Kubernetes where users may have access to secure endpoints in the control plane network. Kubernetes clusters are only affected if an untrusted user can to modify Node objects and send requests proxying through them.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    ### CVE-2022-3294: Node address isn't always verified when proxying
    
    A security issue was discovered in Kubernetes where users may have access to secure endpoints in the control plane network. Kubernetes clusters are only affected if an untrusted user can to modify Node objects and send requests proxying through them.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.24.md

    ### CVE-2022-3294: Node address isn't always verified when proxying
    
    A security issue was discovered in Kubernetes where users may have access to secure endpoints in the control plane network. Kubernetes clusters are only affected if an untrusted user can to modify Node objects and send requests proxying through them.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.15.md

    ## Metrics Changes
    
    ### Added metrics
    
    - The metric `kube_proxy_sync_proxy_rules_last_timestamp_seconds` is now available, indicating the last time that kube-proxy successfully applied proxying rules. ([#74027](https://github.com/kubernetes/kubernetes/pull/74027), [@squeed](https://github.com/squeed))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  9. 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)
  10. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top