Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for RegisterNode (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
    
            ModelNodeInternal root = modelGraph.getRoot();
            root.addLink(registration);
            return this;
        }
    
        @Override
        public void registerNode(ModelNodeInternal node, Multimap<ModelActionRole, ? extends ModelAction> actions) {
            // Disabled before 2.3 release due to not wanting to validate task names (which may contain invalid chars), at least not yet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.RegisterNode, "register-node", c.RegisterNode, "Register the node with the apiserver. If --kubeconfig is not provided, this flag is irrelevant, as the Kubelet won't have an apiserver to register with.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    	kl.syncNodeStatusMux.Lock()
    	defer kl.syncNodeStatusMux.Unlock()
    	ctx := context.Background()
    
    	if kl.kubeClient == nil || kl.heartbeatClient == nil {
    		return
    	}
    	if kl.registerNode {
    		// This will exit immediately if it doesn't need to do anything.
    		kl.registerWithAPIServer()
    	}
    	if err := kl.updateNodeStatus(ctx); err != nil {
    		klog.ErrorS(err, "Unable to update node status")
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		podLogsDirectory:               podLogsDirectory,
    		resyncInterval:                 kubeCfg.SyncFrequency.Duration,
    		sourcesReady:                   config.NewSourcesReady(kubeDeps.PodConfig.SeenAllSources),
    		registerNode:                   registerNode,
    		registerWithTaints:             registerWithTaints,
    		registerSchedulable:            registerSchedulable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		kubeServer.CertDirectory,
    		kubeServer.RootDirectory,
    		kubeServer.PodLogsDir,
    		kubeServer.ImageCredentialProviderConfigFile,
    		kubeServer.ImageCredentialProviderBinDir,
    		kubeServer.RegisterNode,
    		kubeServer.RegisterWithTaints,
    		kubeServer.AllowedUnsafeSysctls,
    		kubeServer.ExperimentalMounterPath,
    		kubeServer.KernelMemcgNotification,
    		kubeServer.ExperimentalNodeAllocatableIgnoreEvictionThreshold,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    										Ref:     ref("k8s.io/api/core/v1.Taint"),
    									},
    								},
    							},
    						},
    					},
    					"registerNode": {
    						SchemaProps: spec.SchemaProps{
    							Description: "registerNode enables automatic registration with the apiserver. Default: true",
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    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