Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for DaemonEndpoint (0.29 sec)

  1. 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)
  2. pkg/controlplane/import_known_versions_test.go

    // Additions should only be made if a non-standard field name was released and cannot be changed for compatibility reasons.
    var allowedNonstandardJSONNames = map[reflect.Type]string{
    	reflect.TypeOf(v1.DaemonEndpoint{}): "Port",
    }
    
    func TestTypeTags(t *testing.T) {
    	if err := apinamingtest.VerifyTagNaming(legacyscheme.Scheme, typesAllowedTags, allowedNonstandardJSONNames); err != nil {
    		t.Errorf("%v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. pkg/registry/core/node/storage/storage_test.go

    		}
    	}
    }
    
    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)
  4. 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)
  5. 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)
  6. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/core/v1,AzureDiskVolumeSource,DataDiskURI
    API rule violation: names_match,k8s.io/api/core/v1,ContainerStatus,LastTerminationState
    API rule violation: names_match,k8s.io/api/core/v1,DaemonEndpoint,Port
    API rule violation: names_match,k8s.io/api/core/v1,Event,ReportingController
    API rule violation: names_match,k8s.io/api/core/v1,FCVolumeSource,WWIDs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *DaemonEndpoint) Reset()      { *m = DaemonEndpoint{} }
    func (*DaemonEndpoint) ProtoMessage() {}
    func (*DaemonEndpoint) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{39}
    }
    func (m *DaemonEndpoint) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *DaemonEndpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // +featureGate=InPlacePodVerticalScaling
      // +optional
      optional ResourceRequirements resources = 11;
    }
    
    // DaemonEndpoint contains information about a single Daemon endpoint.
    message DaemonEndpoint {
      // Port number of the given endpoint.
      optional int32 Port = 1;
    }
    
    // Represents downward API info for projecting into a projected volume.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top