Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 745 for providerID (0.17 sec)

  1. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	registries := []serviceregistry.Simple{
    		{
    			ProviderID:          "registry1",
    			ClusterID:           "cluster1",
    			DiscoveryController: memory.NewServiceDiscovery(),
    		},
    		{
    			ProviderID:          "registry2",
    			ClusterID:           "cluster2",
    			DiscoveryController: memory.NewServiceDiscovery(),
    		},
    		{
    			ProviderID:          provider.Kubernetes,
    			ClusterID:           "cluster3",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller.go

    	}
    }
    
    func (c *Controller) addRegistry(registry serviceregistry.Instance, stop <-chan struct{}) {
    	added := false
    	if registry.Provider() == provider.Kubernetes {
    		for i, r := range c.registries {
    			if r.Provider() != provider.Kubernetes {
    				// insert the registry in the position of the first non kubernetes registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podCIDR": "podCIDRValue",
        "podCIDRs": [
          "podCIDRsValue"
        ],
        "providerID": "providerIDValue",
        "unschedulable": true,
        "taints": [
          {
            "key": "keyValue",
            "value": "valueValue",
            "effect": "effectValue",
            "timeAdded": "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      externalID: externalIDValue
      podCIDR: podCIDRValue
      podCIDRs:
      - podCIDRsValue
      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    status:
      addresses:
      - address: addressValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    	for k, v := range kl.nodeLabels {
    		if cv, found := node.ObjectMeta.Labels[k]; found {
    			klog.InfoS("the node label will overwrite default setting", "labelKey", k, "labelValue", v, "default", cv)
    		}
    		node.ObjectMeta.Labels[k] = v
    	}
    
    	if kl.providerID != "" {
    		node.Spec.ProviderID = kl.providerID
    	}
    
    	if kl.cloud != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pkg/kubemark/hollow_kubelet.go

    	c.MaxPods = int32(opt.MaxPods)
    	c.PodsPerCore = int32(opt.PodsPerCore)
    	c.ClusterDNS = []string{}
    	c.ImageGCHighThresholdPercent = 90
    	c.ImageGCLowThresholdPercent = 80
    	c.ProviderID = fmt.Sprintf("kubemark://%v", opt.NodeName)
    	c.VolumeStatsAggPeriod.Duration = time.Minute
    	c.CgroupRoot = ""
    	c.CPUCFSQuota = true
    	c.EnableControllerAttachDetach = false
    	c.EnableDebuggingHandlers = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/helpers_test.go

    		"NodeStatusUpdateFrequency.Duration",
    		"NodeStatusReportFrequency.Duration",
    		"OOMScoreAdj",
    		"PodCIDR",
    		"PodPidsLimit",
    		"PodsPerCore",
    		"Port",
    		"ProtectKernelDefaults",
    		"ProviderID",
    		"ReadOnlyPort",
    		"RegisterNode",
    		"RegistryBurst",
    		"RegistryPullQPS",
    		"ReservedMemory",
    		"ReservedSystemCPUs",
    		"RegisterWithTaints",
    		"RuntimeRequestTimeout.Duration",
    		"RunOnce",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/fake.go

    	for _, instance := range opts.Instances {
    		msd.AddInstance(instance)
    	}
    	msd.AddGateways(opts.Gateways...)
    	msd.ClusterID = cluster2.ID(provider.Mock)
    	memserviceRegistry := serviceregistry.Simple{
    		ClusterID:           cluster2.ID(provider.Mock),
    		ProviderID:          provider.Mock,
    		DiscoveryController: msd,
    	}
    	serviceDiscovery.AddRegistry(memserviceRegistry)
    	for _, reg := range opts.ServiceRegistries {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - The initialization of nodes using external cloud providers now waits for the providerID value to be available before untainting it. This ensures that nodes are not declared Ready without necessary information such as the providerID and zone labels, which are required for integrations like load balancers to function correctly. Cloud providers that do not implement the GetInstanceProviderID method will not require the providerID to be set and will not fail to initialize the node for backward...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    	fs.StringVar(&f.CloudProvider, "cloud-provider", f.CloudProvider, "The provider for cloud services. Set to empty string for running with no cloud provider. Set to 'external' for running with an external cloud provider. If set, the cloud provider determines the name of the node (consult cloud provider documentation to determine if and how the hostname is used).")
    
    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