-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spelling #9778
Spelling #9778
Changes from all commits
1276e12
e91b8b2
068b93b
a56d73d
4bd8f13
6784bd4
2082dd2
e14e028
e3cece3
fde0ee5
7a7661c
3938dd9
b0abe8c
9f5dff8
1de1b1d
0b1ba21
2ae2294
63ba934
70ddf70
748642e
58ae5fb
32c2bb0
f9f7688
a3d0dd2
009f11a
2567583
75d851f
8184cdb
9fd818e
5089044
fff0bb2
b7d8719
42f8b88
e29e9f1
c45caae
cd4bf62
bb79a05
6591895
acb53e7
2d89607
f4082ae
81d0ce2
bcc1356
880da9f
46507ad
6bbd0a3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ metadata: | |
labels: | ||
serving.knative.dev/release: devel | ||
annotations: | ||
knative.dev/example-checksum: "12baeac1" | ||
knative.dev/example-checksum: "1d830d9e" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove this change, nothing to do with the spell checking |
||
data: | ||
_example: | | ||
################################ | ||
|
@@ -153,11 +153,11 @@ data: | |
# Scale to zero pod retention period defines the minimum amount | ||
# of time the last pod will remain after Autoscaler has decided to | ||
# scale to zero. | ||
# This flag is for the situations where the pod starup is very expensive | ||
# This flag is for the situations where the pod startup is very expensive | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
# and the traffic is bursty (requiring smaller windows for fast action), | ||
# but patchy. | ||
# The larger of this flag and `scale-to-zero-grace-period` will effectively | ||
# detemine how the last pod will hang around. | ||
# determine how the last pod will hang around. | ||
scale-to-zero-pod-retention-period: "0s" | ||
|
||
# pod-autoscaler-class specifies the default pod autoscaler class | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ metadata: | |
labels: | ||
serving.knative.dev/release: devel | ||
annotations: | ||
knative.dev/example-checksum: "3af7fc85" | ||
knative.dev/example-checksum: "97c1d10b" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wonder why your tool changing yaml checking sums |
||
data: | ||
_example: | | ||
################################ | ||
|
@@ -81,7 +81,7 @@ data: | |
logging.request-log-template: '{"httpRequest": {"requestMethod": "{{.Request.Method}}", "requestUrl": "{{js .Request.RequestURI}}", "requestSize": "{{.Request.ContentLength}}", "status": {{.Response.Code}}, "responseSize": "{{.Response.Size}}", "userAgent": "{{js .Request.UserAgent}}", "remoteIp": "{{js .Request.RemoteAddr}}", "serverIp": "{{.Revision.PodIP}}", "referer": "{{js .Request.Referer}}", "latency": "{{.Response.Latency}}s", "protocol": "{{.Request.Proto}}"}, "traceId": "{{index .Request.Header "X-B3-Traceid"}}"}' | ||
|
||
# If true, the request logging will be enabled. | ||
# NB: up to and including Knative version 0.18 if logging.requst-log-template is non-empty, this value | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Google says that this is not present beyond one gist |
||
# NB: up to and including Knative version 0.18 if logging.request-log-template is non-empty, this value | ||
# will be ignored. | ||
logging.enable-request-log: "false" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,7 +109,7 @@ type revisionWatcher struct { | |
logger *zap.SugaredLogger | ||
|
||
// podsAddressable will be set to false if we cannot | ||
// probe a pod directly, but its cluster IP has beeen successfully probed. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sometimes people intentionally add extra letters, this doesn't appear to be such an instance |
||
// probe a pod directly, but its cluster IP has been successfully probed. | ||
podsAddressable bool | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ func ReconcileCertificate(ctx context.Context, owner kmeta.Accessor, desired *v1 | |
|
||
recorder := controller.GetEventRecorder(ctx) | ||
if recorder == nil { | ||
return nil, fmt.Errorf("recoder for reconciling Certificate %s/%s is not created", desired.Namespace, desired.Name) | ||
return nil, fmt.Errorf("recorder for reconciling Certificate %s/%s is not created", desired.Namespace, desired.Name) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm always worried about changes like his, but as the line above is |
||
} | ||
cert, err := certAccessor.GetCertificateLister().Certificates(desired.Namespace).Get(desired.Name) | ||
if apierrs.IsNotFound(err) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I should point out that the first commented item has a leading space (but no trailing), whereas the second has no whitespace. I suspect the latter is the preferred style, but I'm not eager to make changes :-)