Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for daemonEndpoints (0.33 sec)

  1. 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)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// Endpoints of daemons running on the Node.
    	// +optional
    	DaemonEndpoints NodeDaemonEndpoints `json:"daemonEndpoints,omitempty" protobuf:"bytes,6,opt,name=daemonEndpoints"`
    	// Set of ids/uuids to uniquely identify the node.
    	// More info: https://kubernetes.io/docs/concepts/nodes/node/#info
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/core/types.go

    	// This field is required in all cases.
    	KubeletConfigKey string
    }
    
    // DaemonEndpoint contains information about a single Daemon endpoint.
    type DaemonEndpoint struct {
    	/*
    		The port tag was not properly in quotes in earlier releases, so it must be
    		uppercase for backwards compatibility (since it was falling back to var name of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    func (ContainerUser) SwaggerDoc() map[string]string {
    	return map_ContainerUser
    }
    
    var map_DaemonEndpoint = map[string]string{
    	"":     "DaemonEndpoint contains information about a single Daemon endpoint.",
    	"Port": "Port number of the given endpoint.",
    }
    
    func (DaemonEndpoint) SwaggerDoc() map[string]string {
    	return map_DaemonEndpoint
    }
    
    var map_DownwardAPIProjection = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // Note that the actual running identity can be changed if the process has enough privilege to do so.
      // +optional
      optional LinuxContainerUser linux = 1;
    }
    
    // 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top