Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for containerRuntimeVersion (0.72 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    						OSImage:                 cadvisortest.FakeContainerOSVersion,
    						OperatingSystem:         goruntime.GOOS,
    						Architecture:            goruntime.GOARCH,
    						ContainerRuntimeVersion: "test://1.5.0",
    						KubeletVersion:          version.Get().String(),
    						KubeProxyVersion:        "",
    					},
    					Capacity: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters.go

    		runtimeVersion := "Unknown"
    		if runtimeVer, err := runtimeVersionFunc(ctx); err == nil {
    			runtimeVersion = runtimeVer.String()
    		}
    		node.Status.NodeInfo.ContainerRuntimeVersion = fmt.Sprintf("%s://%s", runtimeTypeFunc(), runtimeVersion)
    
    		node.Status.NodeInfo.KubeletVersion = version.Get().String()
    
    		if utilfeature.DefaultFeatureGate.Enabled(features.DisableNodeKubeProxyVersion) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Kernel-Version", Type: "string", Priority: 1, Description: apiv1.NodeSystemInfo{}.SwaggerDoc()["kernelVersion"]},
    		{Name: "Container-Runtime", Type: "string", Priority: 1, Description: apiv1.NodeSystemInfo{}.SwaggerDoc()["containerRuntimeVersion"]},
    	}
    
    	_ = h.TableHandler(nodeColumnDefinitions, printNode)
    	_ = h.TableHandler(nodeColumnDefinitions, printNodeList)
    
    	eventColumnDefinitions := []metav1.TableColumnDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.MachineID = in.MachineID
    	out.SystemUUID = in.SystemUUID
    	out.BootID = in.BootID
    	out.KernelVersion = in.KernelVersion
    	out.OSImage = in.OSImage
    	out.ContainerRuntimeVersion = in.ContainerRuntimeVersion
    	out.KubeletVersion = in.KubeletVersion
    	out.KubeProxyVersion = in.KubeProxyVersion
    	out.OperatingSystem = in.OperatingSystem
    	out.Architecture = in.Architecture
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	OSImage string `json:"osImage" protobuf:"bytes,5,opt,name=osImage"`
    	// ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
    	ContainerRuntimeVersion string `json:"containerRuntimeVersion" protobuf:"bytes,6,opt,name=containerRuntimeVersion"`
    	// Kubelet Version reported by the node.
    	KubeletVersion string `json:"kubeletVersion" protobuf:"bytes,7,opt,name=kubeletVersion"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    	copy(dAtA[i:], m.KubeletVersion)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.KubeletVersion)))
    	i--
    	dAtA[i] = 0x3a
    	i -= len(m.ContainerRuntimeVersion)
    	copy(dAtA[i:], m.ContainerRuntimeVersion)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.ContainerRuntimeVersion)))
    	i--
    	dAtA[i] = 0x32
    	i -= len(m.OSImage)
    	copy(dAtA[i:], m.OSImage)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.OSImage)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      optional string osImage = 5;
    
      // ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
      optional string containerRuntimeVersion = 6;
    
      // Kubelet Version reported by the node.
      optional string kubeletVersion = 7;
    
      // KubeProxy Version reported by the node.
      optional string kubeProxyVersion = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	BootID string
    	// Kernel Version reported by the node.
    	KernelVersion string
    	// OS Image reported by the node.
    	OSImage string
    	// ContainerRuntime Version reported by the node.
    	ContainerRuntimeVersion string
    	// Kubelet Version reported by the node.
    	KubeletVersion string
    	// Deprecated: KubeProxy Version reported by the node.
    	KubeProxyVersion string
    	// The Operating System reported by the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"osImage":                 "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
    	"containerRuntimeVersion": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).",
    	"kubeletVersion":          "Kubelet Version reported by the node.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      optional string osImage = 5;
    
      // ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
      optional string containerRuntimeVersion = 6;
    
      // Kubelet Version reported by the node.
      optional string kubeletVersion = 7;
    
      // Deprecated: KubeProxy Version reported by the node.
      optional string kubeProxyVersion = 8;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top