Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ContainerRuntimeEndpoint (0.28 sec)

  1. pkg/kubelet/apis/config/validation/validation.go

    	}
    
    	if kc.ContainerRuntimeEndpoint == "" {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: the containerRuntimeEndpoint was not specified or empty"))
    	}
    
    	if kc.EnableSystemLogQuery && !localFeatureGate.Enabled(features.NodeLogQuery) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    		"TypeMeta.Kind",
    		"VolumeStatsAggPeriod.Duration",
    		"VolumePluginDir",
    		"ShutdownGracePeriod.Duration",
    		"ShutdownGracePeriodCriticalPods.Duration",
    		"MemoryThrottlingFactor",
    		"ContainerRuntimeEndpoint",
    		"ImageServiceEndpoint",
    		"Tracing.Endpoint",
    		"Tracing.SamplingRatePerMillion",
    		"LocalStorageCapacityIsolation",
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    	// +optional
    	LocalStorageCapacityIsolation bool
    
    	// ContainerRuntimeEndpoint is the endpoint of container runtime.
    	// unix domain sockets supported on Linux while npipes and tcp endpoints are supported for windows.
    	// Examples:'unix:///path/to/runtime.sock', 'npipe:////./pipe/runtime'
    	ContainerRuntimeEndpoint string
    
    	// ImageServiceEndpoint is the endpoint of container image service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/validation/validation_test.go

    			"CustomCPUCFSQuotaPeriod": true,
    			"GracefulNodeShutdown":    true,
    			"MemoryQoS":               true,
    		},
    		Logging: logsapi.LoggingConfiguration{
    			Format: "text",
    		},
    		ContainerRuntimeEndpoint:    "unix:///run/containerd/containerd.sock",
    		ContainerLogMaxWorkers:      1,
    		ContainerLogMonitorInterval: metav1.Duration{Duration: 10 * time.Second},
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	// runtime flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top