Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for imageServiceEndpoint (0.43 sec)

  1. pkg/kubemark/hollow_kubelet.go

    	f.NodeLabels = opt.NodeLabels
    	f.RegisterSchedulable = true
    
    	// Config struct
    	c, err := options.NewKubeletConfiguration()
    	if err != nil {
    		panic(err)
    	}
    
    	c.ImageServiceEndpoint = "unix:///run/containerd/containerd.sock"
    	c.StaticPodURL = ""
    	c.EnableServer = true
    	c.Address = "0.0.0.0" /* bind address */
    	c.Port = int32(opt.KubeletPort)
    	c.ReadOnlyPort = int32(opt.KubeletReadOnlyPort)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.ContainerRuntimeEndpoint = in.ContainerRuntimeEndpoint
    	out.ImageServiceEndpoint = in.ImageServiceEndpoint
    	return nil
    }
    
    // Convert_v1beta1_KubeletConfiguration_To_config_KubeletConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

    		"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)
  4. cmd/kubemark/app/hollow_node.go

    		}
    
    		var imageService internalapi.ImageManagerService = fakeRemoteRuntime.ImageService
    		if config.UseHostImageService {
    			imageService, err = remote.NewRemoteImageService(c.ImageServiceEndpoint, 15*time.Second, noop.NewTracerProvider(), &logger)
    			if err != nil {
    				return fmt.Errorf("Failed to init image service, error: %w", err)
    			}
    		}
    
    		hollowKubelet := kubemark.NewHollowKubelet(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	// Examples:'unix:///path/to/runtime.sock', 'npipe:////./pipe/runtime'
    	ContainerRuntimeEndpoint string
    
    	// ImageServiceEndpoint is the endpoint of container image service.
    	// If not specified the default value is ContainerRuntimeEndpoint
    	// +optional
    	ImageServiceEndpoint string
    }
    
    // KubeletAuthorizationMode denotes the authorization mode for the kubelet
    type KubeletAuthorizationMode string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.ImageServiceEndpoint, "image-service-endpoint", c.ImageServiceEndpoint, "The endpoint of container image service. If not specified, it will be the same with --container-runtime-endpoint by default. Unix Domain Socket are supported on Linux, while npipe and tcp endpoints are supported on...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    }
    
    // PreInitRuntimeService will init runtime service before RunKubelet.
    func PreInitRuntimeService(kubeCfg *kubeletconfiginternal.KubeletConfiguration, kubeDeps *Dependencies) error {
    	remoteImageEndpoint := kubeCfg.ImageServiceEndpoint
    	if remoteImageEndpoint == "" && kubeCfg.ContainerRuntimeEndpoint != "" {
    		remoteImageEndpoint = kubeCfg.ContainerRuntimeEndpoint
    	}
    	var err error
    
    	var tp trace.TracerProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"imageServiceEndpoint": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top