Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for port_forward (0.26 sec)

  1. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. api/discovery/api__v1.json

          "name": "pods/log",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get"
          ]
        },
        {
          "kind": "PodPortForwardOptions",
          "name": "pods/portforward",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "create",
            "get"
          ]
        },
        {
          "kind": "PodProxyOptions",
          "name": "pods/proxy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/storage.go

    	EphemeralContainers *EphemeralContainersREST
    	Log                 *podrest.LogREST
    	Proxy               *podrest.ProxyREST
    	Exec                *podrest.ExecREST
    	Attach              *podrest.AttachREST
    	PortForward         *podrest.PortForwardREST
    }
    
    // REST implements a RESTStorage for pods
    type REST struct {
    	*genericregistry.Store
    	proxyTransport http.RoundTripper
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. pkg/registry/core/rest/storage_core.go

    		storage[resource+"/attach"] = podStorage.Attach
    		storage[resource+"/status"] = podStorage.Status
    		storage[resource+"/log"] = podStorage.Log
    		storage[resource+"/exec"] = podStorage.Exec
    		storage[resource+"/portforward"] = podStorage.PortForward
    		storage[resource+"/proxy"] = podStorage.Proxy
    		storage[resource+"/binding"] = podStorage.Binding
    		if podStorage.Eviction != nil {
    			storage[resource+"/eviction"] = podStorage.Eviction
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.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. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

          rbac.authorization.k8s.io/aggregate-to-edit: "true"
        name: system:aggregate-to-edit
      rules:
      - apiGroups:
        - ""
        resources:
        - pods/attach
        - pods/exec
        - pods/portforward
        - pods/proxy
        - secrets
        - services/proxy
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - serviceaccounts
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/exec").RuleOrDie(),
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/portforward").RuleOrDie(),
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("secrets").RuleOrDie(),
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("services/proxy").RuleOrDie(),
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("impersonate").Groups(legacyGroup).Resources("serviceaccounts").RuleOrDie(),
    
    				rbacv1helpers.NewRule(Write...).Groups(legacyGroup).Resources("pods", "pods/attach", "pods/proxy", "pods/exec", "pods/portforward").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top