mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 07:27:21 +00:00
rename api.LivenessProbe to api.Probe and break out Actions
This commit is contained in:
@@ -273,15 +273,10 @@ type ExecAction struct {
|
||||
Command []string `json:"command,omitempty"`
|
||||
}
|
||||
|
||||
// LivenessProbe describes a liveness probe to be examined to the container.
|
||||
// TODO: pass structured data to the actions, and document that data here.
|
||||
type LivenessProbe struct {
|
||||
// HTTPGetProbe parameters, required if Type == 'http'
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty"`
|
||||
// TCPSocketProbe parameter, required if Type == 'tcp'
|
||||
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty"`
|
||||
// ExecProbe parameter, required if Type == 'exec'
|
||||
Exec *ExecAction `json:"exec,omitempty"`
|
||||
// Probe describes a liveness probe to be examined to the container.
|
||||
type Probe struct {
|
||||
// The action taken to determine the health of a container
|
||||
Handler `json:",inline"`
|
||||
// Length of time before health checking is activated. In seconds.
|
||||
InitialDelaySeconds int64 `json:"initialDelaySeconds,omitempty"`
|
||||
}
|
||||
@@ -316,7 +311,7 @@ type Container struct {
|
||||
// Optional: Defaults to unlimited.
|
||||
CPU resource.Quantity `json:"cpu,omitempty"`
|
||||
VolumeMounts []VolumeMount `json:"volumeMounts,omitempty"`
|
||||
LivenessProbe *LivenessProbe `json:"livenessProbe,omitempty"`
|
||||
LivenessProbe *Probe `json:"livenessProbe,omitempty"`
|
||||
Lifecycle *Lifecycle `json:"lifecycle,omitempty"`
|
||||
// Optional: Defaults to /dev/termination-log
|
||||
TerminationMessagePath string `json:"terminationMessagePath,omitempty"`
|
||||
@@ -334,6 +329,9 @@ type Handler struct {
|
||||
Exec *ExecAction `json:"exec,omitempty"`
|
||||
// HTTPGet specifies the http request to perform.
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty"`
|
||||
// TCPSocket specifies an action involving a TCP port.
|
||||
// TODO: implement a realistic TCP lifecycle hook
|
||||
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty"`
|
||||
}
|
||||
|
||||
// Lifecycle describes actions that the management system should take in response to container lifecycle
|
||||
|
||||
@@ -811,6 +811,33 @@ func init() {
|
||||
}
|
||||
return nil
|
||||
},
|
||||
|
||||
func(in *newer.Probe, out *LivenessProbe, s conversion.Scope) error {
|
||||
if err := s.Convert(&in.Exec, &out.Exec, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.HTTPGet, &out.HTTPGet, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.TCPSocket, &out.TCPSocket, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
out.InitialDelaySeconds = in.InitialDelaySeconds
|
||||
return nil
|
||||
},
|
||||
func(in *LivenessProbe, out *newer.Probe, s conversion.Scope) error {
|
||||
if err := s.Convert(&in.Exec, &out.Exec, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.HTTPGet, &out.HTTPGet, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.TCPSocket, &out.TCPSocket, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
out.InitialDelaySeconds = in.InitialDelaySeconds
|
||||
return nil
|
||||
},
|
||||
)
|
||||
if err != nil {
|
||||
// If one of the conversion functions is malformed, detect it immediately.
|
||||
|
||||
@@ -270,14 +270,16 @@ type Container struct {
|
||||
}
|
||||
|
||||
// Handler defines a specific action that should be taken
|
||||
// TODO: merge this with liveness probing?
|
||||
// TODO: pass structured data to these actions, and document that data here.
|
||||
type Handler struct {
|
||||
// One and only one of the following should be specified.
|
||||
// Exec specifies the action to take.
|
||||
Exec *ExecAction `json:"exec,omitempty" description:"exec-based hook handler"`
|
||||
Exec *ExecAction `json:"exec,omitempty" description:"exec-based handler"`
|
||||
// HTTPGet specifies the http request to perform.
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty" description:"HTTP-based hook handler"`
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty" description:"HTTP-based handler"`
|
||||
// TCPSocket specifies an action involving a TCP port.
|
||||
// TODO: implement a realistic TCP lifecycle hook
|
||||
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" description:"TCP-based handler; TCP hooks not yet supported"`
|
||||
}
|
||||
|
||||
// Lifecycle describes actions that the management system should take in response to container lifecycle
|
||||
|
||||
@@ -724,6 +724,33 @@ func init() {
|
||||
}
|
||||
return nil
|
||||
},
|
||||
|
||||
func(in *newer.Probe, out *LivenessProbe, s conversion.Scope) error {
|
||||
if err := s.Convert(&in.Exec, &out.Exec, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.HTTPGet, &out.HTTPGet, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.TCPSocket, &out.TCPSocket, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
out.InitialDelaySeconds = in.InitialDelaySeconds
|
||||
return nil
|
||||
},
|
||||
func(in *LivenessProbe, out *newer.Probe, s conversion.Scope) error {
|
||||
if err := s.Convert(&in.Exec, &out.Exec, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.HTTPGet, &out.HTTPGet, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.Convert(&in.TCPSocket, &out.TCPSocket, 0); err != nil {
|
||||
return err
|
||||
}
|
||||
out.InitialDelaySeconds = in.InitialDelaySeconds
|
||||
return nil
|
||||
},
|
||||
)
|
||||
if err != nil {
|
||||
// If one of the conversion functions is malformed, detect it immediately.
|
||||
|
||||
@@ -238,9 +238,12 @@ type Container struct {
|
||||
type Handler struct {
|
||||
// One and only one of the following should be specified.
|
||||
// Exec specifies the action to take.
|
||||
Exec *ExecAction `json:"exec,omitempty" description:"exec-based hook handler"`
|
||||
Exec *ExecAction `json:"exec,omitempty" description:"exec-based handler"`
|
||||
// HTTPGet specifies the http request to perform.
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty" description:"HTTP-based hook handler"`
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty" description:"HTTP-based handler"`
|
||||
// TCPSocket specifies an action involving a TCP port.
|
||||
// TODO: implement a realistic TCP lifecycle hook
|
||||
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" description:"TCP-based handler; TCP hooks not yet supported"`
|
||||
}
|
||||
|
||||
// Lifecycle describes actions that the management system should take in response to container lifecycle
|
||||
|
||||
@@ -291,15 +291,10 @@ type ExecAction struct {
|
||||
Command []string `json:"command,omitempty"`
|
||||
}
|
||||
|
||||
// LivenessProbe describes how to probe a container for liveness.
|
||||
// TODO: pass structured data to the actions, and document that data here.
|
||||
type LivenessProbe struct {
|
||||
// HTTPGetProbe parameters, required if Type == 'HTTP'
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty"`
|
||||
// TCPSocketProbe parameter, required if Type == 'TCP'
|
||||
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty"`
|
||||
// ExecProbe parameter, required if Type == 'Exec'
|
||||
Exec *ExecAction `json:"exec,omitempty"`
|
||||
// Probe describes a liveness probe to be examined to the container.
|
||||
type Probe struct {
|
||||
// The action taken to determine the health of a container
|
||||
Handler `json:",inline"`
|
||||
// Length of time before health checking is activated. In seconds.
|
||||
InitialDelaySeconds int64 `json:"initialDelaySeconds,omitempty"`
|
||||
}
|
||||
@@ -334,7 +329,7 @@ type Container struct {
|
||||
// Optional: Defaults to unlimited. Units: Cores. (500m == 1/2 core)
|
||||
CPU resource.Quantity `json:"cpu,omitempty"`
|
||||
VolumeMounts []VolumeMount `json:"volumeMounts,omitempty"`
|
||||
LivenessProbe *LivenessProbe `json:"livenessProbe,omitempty"`
|
||||
LivenessProbe *Probe `json:"livenessProbe,omitempty"`
|
||||
Lifecycle *Lifecycle `json:"lifecycle,omitempty"`
|
||||
// Optional: Defaults to /dev/termination-log
|
||||
TerminationMessagePath string `json:"terminationMessagePath,omitempty"`
|
||||
@@ -352,6 +347,9 @@ type Handler struct {
|
||||
Exec *ExecAction `json:"exec,omitempty"`
|
||||
// HTTPGet specifies the http request to perform.
|
||||
HTTPGet *HTTPGetAction `json:"httpGet,omitempty"`
|
||||
// TCPSocket specifies an action involving a TCP port.
|
||||
// TODO: implement a realistic TCP lifecycle hook
|
||||
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty"`
|
||||
}
|
||||
|
||||
// Lifecycle describes actions that the management system should take in response to container lifecycle
|
||||
|
||||
Reference in New Issue
Block a user