Skip to content

Commit adbc7c2

Browse files
committed
find . -type f \( -name "*.go" -or -name "*.md" \) -print0 | xargs -0 gsed -i 's/the the /the /g'
1 parent 4304f4b commit adbc7c2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG/CHANGELOG-1.17.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2271,10 +2271,10 @@ filename | sha512 hash
22712271
* kubeadm: fix an issue with the kube-proxy container env. variables ([#84888](https://github.com/kubernetes/kubernetes/pull/84888), [@neolit123](https://github.com/neolit123))
22722272
* Updated EndpointSlices to use PublishNotReadyAddresses from Services. ([#84573](https://github.com/kubernetes/kubernetes/pull/84573), [@robscott](https://github.com/robscott))
22732273
* The example API server has renamed its `wardle.k8s.io` API group to `wardle.example.com` ([#81670](https://github.com/kubernetes/kubernetes/pull/81670), [@liggitt](https://github.com/liggitt))
2274-
* A new kubelet command line option, --reserved-cpus, is introduced to explicitly define the the CPU list that will be reserved for system. For example, if --reserved-cpus=0,1,2,3 is specified, then cpu 0,1,2,3 will be reserved for the system. On a system with 24 CPUs, the user may specify isolcpus=4-23 for the kernel option and use CPU 4-23 for the user containers. ([#83592](https://github.com/kubernetes/kubernetes/pull/83592), [@jianzzha](https://github.com/jianzzha))
2274+
* A new kubelet command line option, --reserved-cpus, is introduced to explicitly define the CPU list that will be reserved for system. For example, if --reserved-cpus=0,1,2,3 is specified, then cpu 0,1,2,3 will be reserved for the system. On a system with 24 CPUs, the user may specify isolcpus=4-23 for the kernel option and use CPU 4-23 for the user containers. ([#83592](https://github.com/kubernetes/kubernetes/pull/83592), [@jianzzha](https://github.com/jianzzha))
22752275
* Utilize diagnostics tool to dump GKE windows test logs ([#83517](https://github.com/kubernetes/kubernetes/pull/83517), [@YangLu1031](https://github.com/YangLu1031))
22762276
* Improving the performance of Endpoint and EndpointSlice controllers by caching Service Selectors ([#84280](https://github.com/kubernetes/kubernetes/pull/84280), [@gongguan](https://github.com/gongguan))
2277-
* When the go-client reflector relists, the ResourceVersion list option is set to the reflector's latest synced resource version to ensure the reflector does not "go back in time" and reprocess events older than it has already processed. If the the server responds with an HTTP 410 (Gone) status code response, the relist falls back to using resourceVersion="". ([#83520](https://github.com/kubernetes/kubernetes/pull/83520), [@jpbetz](https://github.com/jpbetz))
2277+
* When the go-client reflector relists, the ResourceVersion list option is set to the reflector's latest synced resource version to ensure the reflector does not "go back in time" and reprocess events older than it has already processed. If the server responds with an HTTP 410 (Gone) status code response, the relist falls back to using resourceVersion="". ([#83520](https://github.com/kubernetes/kubernetes/pull/83520), [@jpbetz](https://github.com/jpbetz))
22782278
* Kubernetes now requires go1.13.4+ to build ([#82809](https://github.com/kubernetes/kubernetes/pull/82809), [@liggitt](https://github.com/liggitt))
22792279
* Ensure health probes are created for local traffic policy UDP services on Azure ([#84802](https://github.com/kubernetes/kubernetes/pull/84802), [@feiskyer](https://github.com/feiskyer))
22802280
* CRDs defaulting is promoted to GA. Note: the feature gate CustomResourceDefaulting will be removed in 1.18. ([#84713](https://github.com/kubernetes/kubernetes/pull/84713), [@sttts](https://github.com/sttts))

pkg/controller/endpointslicemirroring/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ func endpointsControllerKey(endpointSlice *discovery.EndpointSlice) (string, err
260260
return fmt.Sprintf("%s/%s", endpointSlice.Namespace, serviceName), nil
261261
}
262262

263-
// skipMirror return true if the the LabelSkipMirror label has been set to
263+
// skipMirror return true if the LabelSkipMirror label has been set to
264264
// "true".
265265
func skipMirror(labels map[string]string) bool {
266266
skipMirror, _ := labels[discovery.LabelSkipMirror]

pkg/registry/certificates/certificates/strategy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ func (csrStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.
165165
populateConditionTimestamps(newCSR, oldCSR)
166166
}
167167

168-
// preserveConditionInstances copies instances of the the specified condition type from oldCSR to newCSR.
168+
// preserveConditionInstances copies instances of the specified condition type from oldCSR to newCSR.
169169
// or returns false if the newCSR added or removed instances
170170
func preserveConditionInstances(newCSR, oldCSR *certificates.CertificateSigningRequest, conditionType certificates.RequestConditionType) bool {
171171
oldIndices := findConditionIndices(oldCSR, conditionType)

staging/src/k8s.io/client-go/rest/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ type Config struct {
134134
// Dial specifies the dial function for creating unencrypted TCP connections.
135135
Dial func(ctx context.Context, network, address string) (net.Conn, error)
136136

137-
// Proxy is the the proxy func to be used for all requests made by this
137+
// Proxy is the proxy func to be used for all requests made by this
138138
// transport. If Proxy is nil, http.ProxyFromEnvironment is used. If Proxy
139139
// returns a nil *URL, no proxy is used.
140140
//

staging/src/k8s.io/client-go/transport/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ type Config struct {
7070
// Dial specifies the dial function for creating unencrypted TCP connections.
7171
Dial func(ctx context.Context, network, address string) (net.Conn, error)
7272

73-
// Proxy is the the proxy func to be used for all requests made by this
73+
// Proxy is the proxy func to be used for all requests made by this
7474
// transport. If Proxy is nil, http.ProxyFromEnvironment is used. If Proxy
7575
// returns a nil *URL, no proxy is used.
7676
//

0 commit comments

Comments
 (0)