This commit is contained in:
AxeZhan
2023-10-16 19:50:28 +08:00
parent 332779a3b2
commit 5c0618b848
72 changed files with 2003 additions and 961 deletions

View File

@@ -7006,6 +7006,10 @@
"$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"sleep": {
"$ref": "#/definitions/io.k8s.api.core.v1.SleepAction",
"description": "Sleep represents the duration that the container should sleep before being terminated."
},
"tcpSocket": {
"$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
"description": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified."
@@ -10435,6 +10439,20 @@
},
"type": "object"
},
"io.k8s.api.core.v1.SleepAction": {
"description": "SleepAction describes a \"sleep\" action.",
"properties": {
"seconds": {
"description": "Seconds is the number of seconds to sleep.",
"format": "int64",
"type": "integer"
}
},
"required": [
"seconds"
],
"type": "object"
},
"io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {

View File

@@ -2901,6 +2901,14 @@
],
"description": "HTTPGet specifies the http request to perform."
},
"sleep": {
"allOf": [
{
"$ref": "#/components/schemas/io.k8s.api.core.v1.SleepAction"
}
],
"description": "Sleep represents the duration that the container should sleep before being terminated."
},
"tcpSocket": {
"allOf": [
{
@@ -7357,6 +7365,21 @@
},
"type": "object"
},
"io.k8s.api.core.v1.SleepAction": {
"description": "SleepAction describes a \"sleep\" action.",
"properties": {
"seconds": {
"default": 0,
"description": "Seconds is the number of seconds to sleep.",
"format": "int64",
"type": "integer"
}
},
"required": [
"seconds"
],
"type": "object"
},
"io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {

View File

@@ -2760,6 +2760,14 @@
],
"description": "HTTPGet specifies the http request to perform."
},
"sleep": {
"allOf": [
{
"$ref": "#/components/schemas/io.k8s.api.core.v1.SleepAction"
}
],
"description": "Sleep represents the duration that the container should sleep before being terminated."
},
"tcpSocket": {
"allOf": [
{
@@ -4438,6 +4446,21 @@
],
"type": "object"
},
"io.k8s.api.core.v1.SleepAction": {
"description": "SleepAction describes a \"sleep\" action.",
"properties": {
"seconds": {
"default": 0,
"description": "Seconds is the number of seconds to sleep.",
"format": "int64",
"type": "integer"
}
},
"required": [
"seconds"
],
"type": "object"
},
"io.k8s.api.core.v1.StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {

View File

@@ -2073,6 +2073,14 @@
],
"description": "HTTPGet specifies the http request to perform."
},
"sleep": {
"allOf": [
{
"$ref": "#/components/schemas/io.k8s.api.core.v1.SleepAction"
}
],
"description": "Sleep represents the duration that the container should sleep before being terminated."
},
"tcpSocket": {
"allOf": [
{
@@ -3629,6 +3637,21 @@
],
"type": "object"
},
"io.k8s.api.core.v1.SleepAction": {
"description": "SleepAction describes a \"sleep\" action.",
"properties": {
"seconds": {
"default": 0,
"description": "Seconds is the number of seconds to sleep.",
"format": "int64",
"type": "integer"
}
},
"required": [
"seconds"
],
"type": "object"
},
"io.k8s.api.core.v1.StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {

View File

@@ -1937,6 +1937,16 @@ func RegisterConversions(s *runtime.Scheme) error {
}); err != nil {
return err
}
if err := s.AddGeneratedConversionFunc((*v1.SleepAction)(nil), (*core.SleepAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
return Convert_v1_SleepAction_To_core_SleepAction(a.(*v1.SleepAction), b.(*core.SleepAction), scope)
}); err != nil {
return err
}
if err := s.AddGeneratedConversionFunc((*core.SleepAction)(nil), (*v1.SleepAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
return Convert_core_SleepAction_To_v1_SleepAction(a.(*core.SleepAction), b.(*v1.SleepAction), scope)
}); err != nil {
return err
}
if err := s.AddGeneratedConversionFunc((*v1.StorageOSPersistentVolumeSource)(nil), (*core.StorageOSPersistentVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
return Convert_v1_StorageOSPersistentVolumeSource_To_core_StorageOSPersistentVolumeSource(a.(*v1.StorageOSPersistentVolumeSource), b.(*core.StorageOSPersistentVolumeSource), scope)
}); err != nil {
@@ -4325,6 +4335,7 @@ func autoConvert_v1_LifecycleHandler_To_core_LifecycleHandler(in *v1.LifecycleHa
out.Exec = (*core.ExecAction)(unsafe.Pointer(in.Exec))
out.HTTPGet = (*core.HTTPGetAction)(unsafe.Pointer(in.HTTPGet))
out.TCPSocket = (*core.TCPSocketAction)(unsafe.Pointer(in.TCPSocket))
out.Sleep = (*core.SleepAction)(unsafe.Pointer(in.Sleep))
return nil
}
@@ -4337,6 +4348,7 @@ func autoConvert_core_LifecycleHandler_To_v1_LifecycleHandler(in *core.Lifecycle
out.Exec = (*v1.ExecAction)(unsafe.Pointer(in.Exec))
out.HTTPGet = (*v1.HTTPGetAction)(unsafe.Pointer(in.HTTPGet))
out.TCPSocket = (*v1.TCPSocketAction)(unsafe.Pointer(in.TCPSocket))
out.Sleep = (*v1.SleepAction)(unsafe.Pointer(in.Sleep))
return nil
}
@@ -8067,6 +8079,26 @@ func Convert_core_SessionAffinityConfig_To_v1_SessionAffinityConfig(in *core.Ses
return autoConvert_core_SessionAffinityConfig_To_v1_SessionAffinityConfig(in, out, s)
}
func autoConvert_v1_SleepAction_To_core_SleepAction(in *v1.SleepAction, out *core.SleepAction, s conversion.Scope) error {
out.Seconds = in.Seconds
return nil
}
// Convert_v1_SleepAction_To_core_SleepAction is an autogenerated conversion function.
func Convert_v1_SleepAction_To_core_SleepAction(in *v1.SleepAction, out *core.SleepAction, s conversion.Scope) error {
return autoConvert_v1_SleepAction_To_core_SleepAction(in, out, s)
}
func autoConvert_core_SleepAction_To_v1_SleepAction(in *core.SleepAction, out *v1.SleepAction, s conversion.Scope) error {
out.Seconds = in.Seconds
return nil
}
// Convert_core_SleepAction_To_v1_SleepAction is an autogenerated conversion function.
func Convert_core_SleepAction_To_v1_SleepAction(in *core.SleepAction, out *v1.SleepAction, s conversion.Scope) error {
return autoConvert_core_SleepAction_To_v1_SleepAction(in, out, s)
}
func autoConvert_v1_StorageOSPersistentVolumeSource_To_core_StorageOSPersistentVolumeSource(in *v1.StorageOSPersistentVolumeSource, out *core.StorageOSPersistentVolumeSource, s conversion.Scope) error {
out.VolumeName = in.VolumeName
out.VolumeNamespace = in.VolumeNamespace

View File

@@ -2045,6 +2045,11 @@ func (in *LifecycleHandler) DeepCopyInto(out *LifecycleHandler) {
*out = new(TCPSocketAction)
**out = **in
}
if in.Sleep != nil {
in, out := &in.Sleep, &out.Sleep
*out = new(SleepAction)
**out = **in
}
return
}
@@ -5671,6 +5676,22 @@ func (in *SessionAffinityConfig) DeepCopy() *SessionAffinityConfig {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SleepAction) DeepCopyInto(out *SleepAction) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SleepAction.
func (in *SleepAction) DeepCopy() *SleepAction {
if in == nil {
return nil
}
out := new(SleepAction)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *StorageOSPersistentVolumeSource) DeepCopyInto(out *StorageOSPersistentVolumeSource) {
*out = *in

View File

@@ -552,6 +552,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/api/core/v1.ServiceSpec": schema_k8sio_api_core_v1_ServiceSpec(ref),
"k8s.io/api/core/v1.ServiceStatus": schema_k8sio_api_core_v1_ServiceStatus(ref),
"k8s.io/api/core/v1.SessionAffinityConfig": schema_k8sio_api_core_v1_SessionAffinityConfig(ref),
"k8s.io/api/core/v1.SleepAction": schema_k8sio_api_core_v1_SleepAction(ref),
"k8s.io/api/core/v1.StorageOSPersistentVolumeSource": schema_k8sio_api_core_v1_StorageOSPersistentVolumeSource(ref),
"k8s.io/api/core/v1.StorageOSVolumeSource": schema_k8sio_api_core_v1_StorageOSVolumeSource(ref),
"k8s.io/api/core/v1.Sysctl": schema_k8sio_api_core_v1_Sysctl(ref),
@@ -21408,11 +21409,17 @@ func schema_k8sio_api_core_v1_LifecycleHandler(ref common.ReferenceCallback) com
Ref: ref("k8s.io/api/core/v1.TCPSocketAction"),
},
},
"sleep": {
SchemaProps: spec.SchemaProps{
Description: "Sleep represents the duration that the container should sleep before being terminated.",
Ref: ref("k8s.io/api/core/v1.SleepAction"),
},
},
},
},
},
Dependencies: []string{
"k8s.io/api/core/v1.ExecAction", "k8s.io/api/core/v1.HTTPGetAction", "k8s.io/api/core/v1.TCPSocketAction"},
"k8s.io/api/core/v1.ExecAction", "k8s.io/api/core/v1.HTTPGetAction", "k8s.io/api/core/v1.SleepAction", "k8s.io/api/core/v1.TCPSocketAction"},
}
}
@@ -28387,6 +28394,28 @@ func schema_k8sio_api_core_v1_SessionAffinityConfig(ref common.ReferenceCallback
}
}
func schema_k8sio_api_core_v1_SleepAction(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
Description: "SleepAction describes a \"sleep\" action.",
Type: []string{"object"},
Properties: map[string]spec.Schema{
"seconds": {
SchemaProps: spec.SchemaProps{
Description: "Seconds is the number of seconds to sleep.",
Default: 0,
Type: []string{"integer"},
Format: "int64",
},
},
},
Required: []string{"seconds"},
},
},
}
}
func schema_k8sio_api_core_v1_StorageOSPersistentVolumeSource(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{

File diff suppressed because it is too large Load Diff

View File

@@ -2088,6 +2088,11 @@ message LifecycleHandler {
// lifecycle hooks will fail in runtime when tcp handler is specified.
// +optional
optional TCPSocketAction tcpSocket = 3;
// Sleep represents the duration that the container should sleep before being terminated.
// +featureGate=PodLifecycleSleepAction
// +optional
optional SleepAction sleep = 4;
}
// LimitRange sets resource usage limits for each kind of resource in a Namespace.
@@ -5562,6 +5567,12 @@ message SessionAffinityConfig {
optional ClientIPConfig clientIP = 1;
}
// SleepAction describes a "sleep" action.
message SleepAction {
// Seconds is the number of seconds to sleep.
optional int64 seconds = 1;
}
// Represents a StorageOS persistent volume resource.
message StorageOSPersistentVolumeSource {
// volumeName is the human-readable name of the StorageOS volume. Volume

View File

@@ -935,6 +935,7 @@ var map_LifecycleHandler = map[string]string{
"exec": "Exec specifies the action to take.",
"httpGet": "HTTPGet specifies the http request to perform.",
"tcpSocket": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.",
"sleep": "Sleep represents the duration that the container should sleep before being terminated.",
}
func (LifecycleHandler) SwaggerDoc() map[string]string {
@@ -2391,6 +2392,15 @@ func (SessionAffinityConfig) SwaggerDoc() map[string]string {
return map_SessionAffinityConfig
}
var map_SleepAction = map[string]string{
"": "SleepAction describes a \"sleep\" action.",
"seconds": "Seconds is the number of seconds to sleep.",
}
func (SleepAction) SwaggerDoc() map[string]string {
return map_SleepAction
}
var map_StorageOSPersistentVolumeSource = map[string]string{
"": "Represents a StorageOS persistent volume resource.",
"volumeName": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",

View File

@@ -2045,6 +2045,11 @@ func (in *LifecycleHandler) DeepCopyInto(out *LifecycleHandler) {
*out = new(TCPSocketAction)
**out = **in
}
if in.Sleep != nil {
in, out := &in.Sleep, &out.Sleep
*out = new(SleepAction)
**out = **in
}
return
}
@@ -5686,6 +5691,22 @@ func (in *SessionAffinityConfig) DeepCopy() *SessionAffinityConfig {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SleepAction) DeepCopyInto(out *SleepAction) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SleepAction.
func (in *SleepAction) DeepCopy() *SleepAction {
if in == nil {
return nil
}
out := new(SleepAction)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *StorageOSPersistentVolumeSource) DeepCopyInto(out *StorageOSPersistentVolumeSource) {
*out = *in

View File

@@ -690,6 +690,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -713,6 +716,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -974,6 +980,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -997,6 +1006,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1258,6 +1270,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1281,6 +1296,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -239,6 +239,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -254,6 +256,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -446,6 +450,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -461,6 +467,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -655,6 +663,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -670,6 +680,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -247,6 +247,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -262,6 +264,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -454,6 +458,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -469,6 +475,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -663,6 +671,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -678,6 +688,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -692,6 +692,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -715,6 +718,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -976,6 +982,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -999,6 +1008,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1260,6 +1272,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1283,6 +1298,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -239,6 +239,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -254,6 +256,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -446,6 +450,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -461,6 +467,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -655,6 +663,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -670,6 +680,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -247,6 +247,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -262,6 +264,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -454,6 +458,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -469,6 +475,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -663,6 +671,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -678,6 +688,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -249,6 +249,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -264,6 +266,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -456,6 +460,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -471,6 +477,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -665,6 +673,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -680,6 +690,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -247,6 +247,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -262,6 +264,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -454,6 +458,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -469,6 +475,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -663,6 +671,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -678,6 +688,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -690,6 +690,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -713,6 +716,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -974,6 +980,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -997,6 +1006,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1258,6 +1270,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1281,6 +1296,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -239,6 +239,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -254,6 +256,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -446,6 +450,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -461,6 +467,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -655,6 +663,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -670,6 +680,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -247,6 +247,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -262,6 +264,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -454,6 +458,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -469,6 +475,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -663,6 +671,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -678,6 +688,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -692,6 +692,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -715,6 +718,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -976,6 +982,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -999,6 +1008,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1260,6 +1272,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1283,6 +1298,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -239,6 +239,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -254,6 +256,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -446,6 +450,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -461,6 +467,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -655,6 +663,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -670,6 +680,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -247,6 +247,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -262,6 +264,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -454,6 +458,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -469,6 +475,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -663,6 +671,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -678,6 +688,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -766,6 +766,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -789,6 +792,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1050,6 +1056,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1073,6 +1082,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1334,6 +1346,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1357,6 +1372,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -294,6 +294,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -309,6 +311,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -501,6 +505,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -516,6 +522,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -710,6 +718,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -725,6 +735,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -717,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -740,6 +743,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1001,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1024,6 +1033,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1285,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1308,6 +1323,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -258,6 +258,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -273,6 +275,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -465,6 +469,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -480,6 +486,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -674,6 +682,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -689,6 +699,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -766,6 +766,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -789,6 +792,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1050,6 +1056,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1073,6 +1082,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1334,6 +1346,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1357,6 +1372,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -294,6 +294,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -309,6 +311,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -501,6 +505,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -516,6 +522,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -710,6 +718,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -725,6 +735,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -632,6 +632,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -655,6 +658,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -916,6 +922,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -939,6 +948,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1200,6 +1212,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1223,6 +1238,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -195,6 +195,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -210,6 +212,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -402,6 +406,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -417,6 +423,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -611,6 +619,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -626,6 +636,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -675,6 +675,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -698,6 +701,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -959,6 +965,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -982,6 +991,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1243,6 +1255,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1266,6 +1281,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -228,6 +228,8 @@ template:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -243,6 +245,8 @@ template:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -435,6 +439,8 @@ template:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -450,6 +456,8 @@ template:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -644,6 +652,8 @@ template:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -659,6 +669,8 @@ template:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -681,6 +681,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -704,6 +707,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -965,6 +971,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -988,6 +997,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1249,6 +1261,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1272,6 +1287,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -233,6 +233,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -248,6 +250,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -440,6 +444,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -455,6 +461,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -649,6 +657,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -664,6 +674,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -690,6 +690,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -713,6 +716,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -974,6 +980,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -997,6 +1006,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1258,6 +1270,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1281,6 +1296,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -239,6 +239,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -254,6 +256,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -446,6 +450,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -461,6 +467,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -655,6 +663,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -670,6 +680,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -691,6 +691,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -714,6 +717,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -975,6 +981,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -998,6 +1007,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1259,6 +1271,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1282,6 +1297,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -249,6 +249,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -264,6 +266,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -456,6 +460,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -471,6 +477,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -665,6 +673,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -680,6 +690,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -692,6 +692,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -715,6 +718,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -976,6 +982,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -999,6 +1008,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},
@@ -1260,6 +1272,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
},
"preStop": {
@@ -1283,6 +1298,9 @@
"tcpSocket": {
"port": "portValue",
"host": "hostValue"
},
"sleep": {
"seconds": 1
}
}
},

View File

@@ -239,6 +239,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -254,6 +256,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -446,6 +450,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -461,6 +467,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -655,6 +663,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue
@@ -670,6 +680,8 @@ spec:
path: pathValue
port: portValue
scheme: schemeValue
sleep:
seconds: 1
tcpSocket:
host: hostValue
port: portValue

View File

@@ -24,6 +24,7 @@ type LifecycleHandlerApplyConfiguration struct {
Exec *ExecActionApplyConfiguration `json:"exec,omitempty"`
HTTPGet *HTTPGetActionApplyConfiguration `json:"httpGet,omitempty"`
TCPSocket *TCPSocketActionApplyConfiguration `json:"tcpSocket,omitempty"`
Sleep *SleepActionApplyConfiguration `json:"sleep,omitempty"`
}
// LifecycleHandlerApplyConfiguration constructs an declarative configuration of the LifecycleHandler type for use with
@@ -55,3 +56,11 @@ func (b *LifecycleHandlerApplyConfiguration) WithTCPSocket(value *TCPSocketActio
b.TCPSocket = value
return b
}
// WithSleep sets the Sleep field in the declarative configuration to the given value
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the Sleep field is set to the value of the last call.
func (b *LifecycleHandlerApplyConfiguration) WithSleep(value *SleepActionApplyConfiguration) *LifecycleHandlerApplyConfiguration {
b.Sleep = value
return b
}

View File

@@ -0,0 +1,39 @@
/*
Copyright The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by applyconfiguration-gen. DO NOT EDIT.
package v1
// SleepActionApplyConfiguration represents an declarative configuration of the SleepAction type for use
// with apply.
type SleepActionApplyConfiguration struct {
Seconds *int64 `json:"seconds,omitempty"`
}
// SleepActionApplyConfiguration constructs an declarative configuration of the SleepAction type for use with
// apply.
func SleepAction() *SleepActionApplyConfiguration {
return &SleepActionApplyConfiguration{}
}
// WithSeconds sets the Seconds field in the declarative configuration to the given value
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the Seconds field is set to the value of the last call.
func (b *SleepActionApplyConfiguration) WithSeconds(value int64) *SleepActionApplyConfiguration {
b.Seconds = &value
return b
}

View File

@@ -5497,6 +5497,9 @@ var schemaYAML = typed.YAMLObject(`types:
- name: httpGet
type:
namedType: io.k8s.api.core.v1.HTTPGetAction
- name: sleep
type:
namedType: io.k8s.api.core.v1.SleepAction
- name: tcpSocket
type:
namedType: io.k8s.api.core.v1.TCPSocketAction
@@ -7565,6 +7568,13 @@ var schemaYAML = typed.YAMLObject(`types:
- name: clientIP
type:
namedType: io.k8s.api.core.v1.ClientIPConfig
- name: io.k8s.api.core.v1.SleepAction
map:
fields:
- name: seconds
type:
scalar: numeric
default: 0
- name: io.k8s.api.core.v1.StorageOSPersistentVolumeSource
map:
fields:

View File

@@ -911,6 +911,8 @@ func ForKind(kind schema.GroupVersionKind) interface{} {
return &applyconfigurationscorev1.ServiceStatusApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("SessionAffinityConfig"):
return &applyconfigurationscorev1.SessionAffinityConfigApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("SleepAction"):
return &applyconfigurationscorev1.SleepActionApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("StorageOSPersistentVolumeSource"):
return &applyconfigurationscorev1.StorageOSPersistentVolumeSourceApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("StorageOSVolumeSource"):