diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json
index f6f20f3fa56..3e8d938cc9e 100644
--- a/api/openapi-spec/swagger.json
+++ b/api/openapi-spec/swagger.json
@@ -59994,7 +59994,7 @@
}
},
"io.k8s.api.core.v1.Taint": {
- "description": "The node this Taint is attached to has the effect \"effect\" on any pod that that does not tolerate the Taint.",
+ "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
"required": [
"key",
"effect"
diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json
index 9d20973c73e..a61f3538079 100644
--- a/api/swagger-spec/v1.json
+++ b/api/swagger-spec/v1.json
@@ -18327,7 +18327,7 @@
},
"v1.Taint": {
"id": "v1.Taint",
- "description": "The node this Taint is attached to has the effect \"effect\" on any pod that that does not tolerate the Taint.",
+ "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
"required": [
"key",
"effect"
diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html
index 2279a9fbe9a..a96c4b30381 100755
--- a/docs/api-reference/v1/definitions.html
+++ b/docs/api-reference/v1/definitions.html
@@ -2143,7 +2143,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
v1.Taint
-
The node this Taint is attached to has the effect "effect" on any pod that that does not tolerate the Taint.
+
The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.
diff --git a/pkg/api/types.go b/pkg/api/types.go
index c00a816d44e..ce2b750230b 100644
--- a/pkg/api/types.go
+++ b/pkg/api/types.go
@@ -2081,8 +2081,8 @@ type PreferredSchedulingTerm struct {
Preference NodeSelectorTerm
}
-// The node this Taint is attached to has the effect "effect" on
-// any pod that that does not tolerate the Taint.
+// The node this Taint is attached to has the "effect" on
+// any pod that does not tolerate the Taint.
type Taint struct {
// Required. The taint key to be applied to a node.
Key string
diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto
index eb94478816b..63d797e018a 100644
--- a/staging/src/k8s.io/api/core/v1/generated.proto
+++ b/staging/src/k8s.io/api/core/v1/generated.proto
@@ -3884,8 +3884,8 @@ message TCPSocketAction {
optional string host = 2;
}
-// The node this Taint is attached to has the effect "effect" on
-// any pod that that does not tolerate the Taint.
+// The node this Taint is attached to has the "effect" on
+// any pod that does not tolerate the Taint.
message Taint {
// Required. The taint key to be applied to a node.
// +patchMergeKey=key
diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go
index 2810a9636fd..77873e9c03f 100644
--- a/staging/src/k8s.io/api/core/v1/types.go
+++ b/staging/src/k8s.io/api/core/v1/types.go
@@ -2299,8 +2299,8 @@ type PreferredSchedulingTerm struct {
Preference NodeSelectorTerm `json:"preference" protobuf:"bytes,2,opt,name=preference"`
}
-// The node this Taint is attached to has the effect "effect" on
-// any pod that that does not tolerate the Taint.
+// The node this Taint is attached to has the "effect" on
+// any pod that does not tolerate the Taint.
type Taint struct {
// Required. The taint key to be applied to a node.
// +patchMergeKey=key
diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
index 1b71fa5dbe4..1efc2c206ac 100644
--- a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
+++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
@@ -1937,7 +1937,7 @@ func (TCPSocketAction) SwaggerDoc() map[string]string {
}
var map_Taint = map[string]string{
- "": "The node this Taint is attached to has the effect \"effect\" on any pod that that does not tolerate the Taint.",
+ "": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
"key": "Required. The taint key to be applied to a node.",
"value": "Required. The taint value corresponding to the taint key.",
"effect": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",