Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for daemonEndpoints (0.53 sec)

  1. pkg/registry/core/node/storage/storage_test.go

    			{Type: api.NodeInternalIP, Address: addr},
    		}
    	}
    }
    
    func setNodeDaemonEndpoint(port int32) tweak {
    	return func(node *api.Node) {
    		node.Status.DaemonEndpoints = api.NodeDaemonEndpoints{
    			KubeletEndpoint: api.DaemonEndpoint{
    				Port: port,
    			},
    		}
    	}
    }
    
    func TestCreate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 01 12:49:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

      - lastHeartbeatTime: "2019-09-20T19:32:50Z"
        lastTransitionTime: "2019-07-09T16:17:49Z"
        message: kubelet is posting ready status
        reason: KubeletReady
        status: "True"
        type: Ready
      daemonEndpoints:
        kubeletEndpoint:
          Port: 10250
      images:
      - names:
        - grafana/grafana@sha256:80e5e113a984d74836aa16f5b4524012099436b1a50df293f00ac6377fb512c8
        - grafana/grafana:4.4.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      - lastHeartbeatTime: "2019-09-20T19:32:50Z"
        lastTransitionTime: "2019-07-09T16:17:49Z"
        message: kubelet is posting ready status
        reason: KubeletReady
        status: "True"
        type: Ready
      daemonEndpoints:
        kubeletEndpoint:
          Port: 10250
      images:
      - names:
        - grafana/grafana@sha256:80e5e113a984d74836aa16f5b4524012099436b1a50df293f00ac6377fb512c8
        - grafana/grafana:4.4.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    		nodestatus.VersionInfo(kl.cadvisor.VersionInfo, kl.containerRuntime.Type, kl.containerRuntime.Version),
    		nodestatus.DaemonEndpoints(kl.daemonEndpoints),
    		nodestatus.Images(kl.nodeStatusMaxImages, kl.imageManager.GetImageList),
    		nodestatus.GoRuntime(),
    		nodestatus.RuntimeHandlers(kl.runtimeState.runtimeHandlers),
    	)
    
    	setters = append(setters,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/kubelet/nodestatus/setters_test.go

    			endpoints: &v1.NodeDaemonEndpoints{},
    			expected:  &v1.NodeDaemonEndpoints{KubeletEndpoint: v1.DaemonEndpoint{Port: 0}},
    		},
    		{
    			name:      "daemon endpoints with specific port",
    			endpoints: &v1.NodeDaemonEndpoints{KubeletEndpoint: v1.DaemonEndpoint{Port: 5678}},
    			expected:  &v1.NodeDaemonEndpoints{KubeletEndpoint: v1.DaemonEndpoint{Port: 5678}},
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		maxPods:                        int(kubeCfg.MaxPods),
    		podsPerCore:                    int(kubeCfg.PodsPerCore),
    		syncLoopMonitor:                atomic.Value{},
    		daemonEndpoints:                daemonEndpoints,
    		containerManager:               kubeDeps.ContainerManager,
    		nodeIPs:                        nodeIPs,
    		nodeIPValidator:                validateNodeIP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/daemonendpoint.go

    package v1
    
    // DaemonEndpointApplyConfiguration represents an declarative configuration of the DaemonEndpoint type for use
    // with apply.
    type DaemonEndpointApplyConfiguration struct {
    	Port *int32 `json:"Port,omitempty"`
    }
    
    // DaemonEndpointApplyConfiguration constructs an declarative configuration of the DaemonEndpoint type for use with
    // apply.
    func DaemonEndpoint() *DaemonEndpointApplyConfiguration {
    	return &DaemonEndpointApplyConfiguration{}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.DaemonEndpoint)(nil), (*core.DaemonEndpoint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_DaemonEndpoint_To_core_DaemonEndpoint(a.(*v1.DaemonEndpoint), b.(*core.DaemonEndpoint), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.DaemonEndpoint)(nil), (*v1.DaemonEndpoint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. pkg/apis/core/zz_generated.deepcopy.go

    func (in *DaemonEndpoint) DeepCopyInto(out *DaemonEndpoint) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonEndpoint.
    func (in *DaemonEndpoint) DeepCopy() *DaemonEndpoint {
    	if in == nil {
    		return nil
    	}
    	out := new(DaemonEndpoint)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *DaemonEndpoint) DeepCopyInto(out *DaemonEndpoint) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonEndpoint.
    func (in *DaemonEndpoint) DeepCopy() *DaemonEndpoint {
    	if in == nil {
    		return nil
    	}
    	out := new(DaemonEndpoint)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top