Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for PortForward (0.19 sec)

  1. istioctl/pkg/dashboard/dashboard.go

    			if err != nil {
    				return err
    			}
    			return portForward(name, namespace, "SkyWalking",
    				"http://%s", bindAddress, skywalkingPort, client, cmd.OutOrStdout(), browser)
    		},
    	}
    
    	return cmd
    }
    
    // portForward first tries to forward localhost:remotePort to podName:remotePort, falls back to dynamic local port
    func portForward(podName, namespace, flavor, urlFormat, localAddress string, remotePort int,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		"pods":                            {url: "/pods/", bucket: "pods"},
    		"portForward":                     {url: "/portForward/podNamespace/podID", bucket: "portForward"},
    		"portForward with uid":            {url: "/portForward/podNamespace/podID/uid", bucket: "portForward"},
    		"run":                             {url: "/run/podNamespace/podID/containerName", bucket: "run"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // STDERR, TTY resize, and error streams) to the input streams of a
    // SPDY connection.
    //
    // The stream tunnel proxy tunnels SPDY frames through a WebSocket
    // connection, and it is used for the PortForward subprotocol (e.g.
    // kubectl port-forward). This proxy implements tunneling by transparently
    // encoding and decoding SPDY framed data into and out of the payload of a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server.go

    	ws.Route(ws.POST("/{podNamespace}/{podID}/{uid}/{containerName}").
    		To(s.getAttach).
    		Operation("getAttach"))
    	s.restfulCont.Add(ws)
    
    	s.addMetricsBucketMatcher("portForward")
    	ws = new(restful.WebService)
    	ws.
    		Path("/portForward")
    	ws.Route(ws.GET("/{podNamespace}/{podID}").
    		To(s.getPortForward).
    		Operation("getPortForward"))
    	ws.Route(ws.POST("/{podNamespace}/{podID}").
    		To(s.getPortForward).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  5. samples/addons/kiali.yaml

      resources:
      - namespaces
      - pods
      - replicationcontrollers
      - services
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    - apiGroups: ["extensions", "apps"]
      resources:
      - daemonsets
      - deployments
      - replicasets
      - statefulsets
      verbs:
      - get
      - list
      - watch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. staging/publishing/import-restrictions.yaml

      excludeTests: true
      ignoredSubTrees:
      - "./staging/src/k8s.io/client-go/tools/cache/testing"
      - "./staging/src/k8s.io/client-go/tools/leaderelection/resourcelock"
      - "./staging/src/k8s.io/client-go/tools/portforward"
      - "./staging/src/k8s.io/client-go/tools/record"
      - "./staging/src/k8s.io/client-go/tools/events"
      - "./staging/src/k8s.io/client-go/tools/reference"
      - "./staging/src/k8s.io/client-go/tools/remotecommand"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/config.go

    	genericConfig.OpenAPIV3Config.Info.Title = "Kubernetes"
    
    	genericConfig.LongRunningFunc = filters.BasicLongRunningRequestCheck(
    		sets.NewString("watch", "proxy"),
    		sets.NewString("attach", "exec", "proxy", "log", "portforward"),
    	)
    
    	kubeVersion := version.Get()
    	genericConfig.Version = &kubeVersion
    
    	if genericConfig.EgressSelector != nil {
    		s.Etcd.StorageConfig.Transport.EgressLookup = genericConfig.EgressSelector.Lookup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top