Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for PodExecOptions (2 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodExecOptions.yaml

    apiVersion: v1
    command:
    - commandValue
    container: containerValue
    kind: PodExecOptions
    stderr: true
    stdin: true
    stdout: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 134 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodExecOptions.yaml

    apiVersion: v1
    command:
    - commandValue
    container: containerValue
    kind: PodExecOptions
    stderr: true
    stdin: true
    stdout: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 134 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodExecOptions.yaml

    apiVersion: v1
    command:
    - commandValue
    container: containerValue
    kind: PodExecOptions
    stderr: true
    stdin: true
    stdout: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 134 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodExecOptions.json

    {
      "kind": "PodExecOptions",
      "apiVersion": "v1",
      "stdin": true,
      "stdout": true,
      "stderr": true,
      "tty": true,
      "container": "containerValue",
      "command": [
        "commandValue"
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 192 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodExecOptions.json

    {
      "kind": "PodExecOptions",
      "apiVersion": "v1",
      "stdin": true,
      "stdout": true,
      "stderr": true,
      "tty": true,
      "container": "containerValue",
      "command": [
        "commandValue"
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 192 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodExecOptions.json

    {
      "kind": "PodExecOptions",
      "apiVersion": "v1",
      "stdin": true,
      "stdout": true,
      "stderr": true,
      "tty": true,
      "container": "containerValue",
      "command": [
        "commandValue"
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 192 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodExecOptions.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 70 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodExecOptions.pb

    Jordan Liggitt <******@****.***> 1645282187 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 70 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodExecOptions.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 70 bytes
    - Viewed (0)
  10. pkg/registry/core/pod/rest/subresources.go

    	Store       *genericregistry.Store
    	KubeletConn client.ConnectionInfoGetter
    }
    
    // Implement Connecter
    var _ = rest.Connecter(&ExecREST{})
    
    // New creates a new podExecOptions object.
    func (r *ExecREST) New() runtime.Object {
    	return &api.PodExecOptions{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *ExecREST) Destroy() {
    	// Given that underlying store is shared with REST,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top