mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-09 12:07:47 +00:00
Merge pull request #120248 from pacoxu/grpc-container-probe
remove feature gate GRPCContainerProbe
This commit is contained in:
commit
43e617f252
@ -281,15 +281,6 @@ const (
|
|||||||
// This flag used to be needed for dockershim CRI and currently does nothing.
|
// This flag used to be needed for dockershim CRI and currently does nothing.
|
||||||
ExperimentalHostUserNamespaceDefaultingGate featuregate.Feature = "ExperimentalHostUserNamespaceDefaulting"
|
ExperimentalHostUserNamespaceDefaultingGate featuregate.Feature = "ExperimentalHostUserNamespaceDefaulting"
|
||||||
|
|
||||||
// owner: @yuzhiquan, @bowei, @PxyUp, @SergeyKanzhelev
|
|
||||||
// kep: https://kep.k8s.io/2727
|
|
||||||
// alpha: v1.23
|
|
||||||
// beta: v1.24
|
|
||||||
// stable: v1.27
|
|
||||||
//
|
|
||||||
// Enables GRPC probe method for {Liveness,Readiness,Startup}Probe.
|
|
||||||
GRPCContainerProbe featuregate.Feature = "GRPCContainerProbe"
|
|
||||||
|
|
||||||
// owner: @bobbypage
|
// owner: @bobbypage
|
||||||
// alpha: v1.20
|
// alpha: v1.20
|
||||||
// beta: v1.21
|
// beta: v1.21
|
||||||
@ -994,8 +985,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
ExperimentalHostUserNamespaceDefaultingGate: {Default: false, PreRelease: featuregate.Deprecated, LockToDefault: true}, // remove in 1.30
|
ExperimentalHostUserNamespaceDefaultingGate: {Default: false, PreRelease: featuregate.Deprecated, LockToDefault: true}, // remove in 1.30
|
||||||
|
|
||||||
GRPCContainerProbe: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, //remove in 1.29
|
|
||||||
|
|
||||||
GracefulNodeShutdown: {Default: true, PreRelease: featuregate.Beta},
|
GracefulNodeShutdown: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
GracefulNodeShutdownBasedOnPodPriority: {Default: true, PreRelease: featuregate.Beta},
|
GracefulNodeShutdownBasedOnPodPriority: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
@ -9016,7 +9016,7 @@
|
|||||||
},
|
},
|
||||||
"grpc": {
|
"grpc": {
|
||||||
"$ref": "#/definitions/io.k8s.api.core.v1.GRPCAction",
|
"$ref": "#/definitions/io.k8s.api.core.v1.GRPCAction",
|
||||||
"description": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate."
|
"description": "GRPC specifies an action involving a GRPC port."
|
||||||
},
|
},
|
||||||
"httpGet": {
|
"httpGet": {
|
||||||
"$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
|
"$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -5617,7 +5617,7 @@
|
|||||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
|
"$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPCContainerProbe feature gate."
|
"description": "GRPC specifies an action involving a GRPC port."
|
||||||
},
|
},
|
||||||
"httpGet": {
|
"httpGet": {
|
||||||
"allOf": [
|
"allOf": [
|
||||||
|
@ -3845,7 +3845,7 @@
|
|||||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
|
"$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPCContainerProbe feature gate."
|
"description": "GRPC specifies an action involving a GRPC port."
|
||||||
},
|
},
|
||||||
"httpGet": {
|
"httpGet": {
|
||||||
"allOf": [
|
"allOf": [
|
||||||
|
@ -3019,7 +3019,7 @@
|
|||||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
|
"$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPCContainerProbe feature gate."
|
"description": "GRPC specifies an action involving a GRPC port."
|
||||||
},
|
},
|
||||||
"httpGet": {
|
"httpGet": {
|
||||||
"allOf": [
|
"allOf": [
|
||||||
|
@ -25523,7 +25523,7 @@
|
|||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
"grpc": {
|
"grpc": {
|
||||||
"description": "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPCContainerProbe feature gate.",
|
"description": "GRPC specifies an action involving a GRPC port.",
|
||||||
"allOf": [
|
"allOf": [
|
||||||
{ "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction" }
|
{ "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction" }
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user