Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for port_forward (0.51 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    	}
    	req := &runtimeapi.PortForwardRequest{
    		PodSandboxId: sandboxIDs[0],
    		Port:         ports,
    	}
    	resp, err := m.runtimeService.PortForward(ctx, req)
    	if err != nil {
    		return nil, err
    	}
    	return url.Parse(resp.Url)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy.go

    		return nil, nil, err
    	}
    	loc := &url.URL{
    		Scheme:   nodeInfo.Scheme,
    		Host:     net.JoinHostPort(nodeInfo.Hostname, nodeInfo.Port),
    		Path:     fmt.Sprintf("/portForward/%s/%s", pod.Namespace, pod.Name),
    		RawQuery: params.Encode(),
    	}
    	return loc, nodeInfo.Transport, nil
    }
    
    // validateContainer validate container is valid for pod, return valid container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    				},
    				Spec: api.PodSpec{
    					NodeName: "node1",
    				},
    			},
    			info:        &client.ConnectionInfo{},
    			opts:        &api.PodPortForwardOptions{},
    			expectedURL: &url.URL{Host: ":", Path: "/portForward/ns/pod1"},
    		},
    		{
    			in: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "ns",
    					Name:      "pod1",
    				},
    				Spec: api.PodSpec{
    					NodeName: "node1",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    		"PUT",
    		"UPDATE",
    		"WATCH",
    		"WATCHLIST")
    
    	// These are the valid connect requests which we report in our metrics.
    	validConnectRequests = utilsets.NewString(
    		"log",
    		"exec",
    		"portforward",
    		"attach",
    		"proxy")
    )
    
    const (
    	// ReadOnlyKind is a string identifying read only request kind
    	ReadOnlyKind = "readOnly"
    	// MutatingKind is a string identifying mutating request kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	PodSchedulingReadiness featuregate.Feature = "PodSchedulingReadiness"
    
    	// owner: @seans3
    	// kep: http://kep.k8s.io/4006
    	// alpha: v1.30
    	//
    	// Enables PortForward to be proxied with a websocket client
    	PortForwardWebsockets featuregate.Feature = "PortForwardWebsockets"
    
    	// owner: @jessfraz
    	// alpha: v1.12
    	//
    	// Enables control over ProcMountType for containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	"k8s.io/apimachinery/pkg/util/version"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    	remotecommandserver "k8s.io/kubelet/pkg/cri/streaming/remotecommand"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    	podshelper "k8s.io/kubernetes/pkg/apis/core/pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    	"k8s.io/client-go/tools/record"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    	"k8s.io/kubelet/pkg/cri/streaming/remotecommand"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.6.md

    * The --long-running-request-regexp flag to kube-apiserver is deprecated and will be removed in a future release. Long-running requests are now detected based on specific verbs (watch, proxy) or subresources (proxy, portforward, log, exec, attach). ([#38119](https://github.com/kubernetes/kubernetes/pull/38119), [@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)
  9. CHANGELOG/CHANGELOG-1.8.md

    - `kubectl run` can set a service account name in the generated pod
      spec with the `--serviceaccount` flag.
    
    - `kubectl proxy` now correctly handles the `exec`, `attach`, and
      `portforward` commands.  You must pass `--disable-filter` to the command to allow these commands.
    
    - Added `cronjobs.batch` to "all", so that `kubectl get all` returns them.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    - Reverted the previous fix for portforward cleanup because it introduced a kubelet regression which can lead into segmentation faults. ([#102587](https://github.com/kubernetes/kubernetes/pull/102587), [@saschagrunert](https://github.com/saschagrunert)) [SIG API Machinery and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top