Skip to content

Commit a4013d9

Browse files
docs: update HTTP links to HTTPS in comments and docs (#16551)
* docs: update HTTP links to HTTPS in comments and docs Replace insecure HTTP reference links with HTTPS equivalents across source comments, CRD YAML descriptions, configmap comments, and generated API docs: - pkg/apis/serving/v1/revision_types.go: upgrade bit.ly ref links in ContainerStatuses and InitContainerStatuses comments - pkg/autoscaler/aggregation/max/window.go: upgrade Wayback Machine link in ascending minima algorithm comment - config/core/300-resources/revision.yaml: upgrade bit.ly ref links in containerStatuses and initContainerStatuses field descriptions - config/core/configmaps/autoscaler.yaml: upgrade bit.ly link in activator-capacity algorithm comment - docs/serving-api.md: upgrade bit.ly href links in generated API reference for RevisionStatus fields - DEVELOPMENT.md: upgrade Google Cloud Console link /kind cleanup * running codegen * removing wrong file * Remove core.md from PR tracking (keep file locally)
1 parent fd9529f commit a4013d9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ kubectl -n knative-serving logs $(kubectl -n knative-serving get pods -l app=con
198198

199199
If you're using a GCP project to host your Kubernetes cluster, it's good to
200200
check the
201-
[Discovery & load balancing](http://console.developers.google.com/kubernetes/discovery)
201+
[Discovery & load balancing](https://console.developers.google.com/kubernetes/discovery)
202202
page to ensure that all services are up and running (and not blocked by a quota
203203
issue, for example).
204204

config/core/300-resources/revision.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,7 @@ spec:
15281528
The digests are resolved during the creation of Revision.
15291529
ContainerStatuses holds the container name and image digests
15301530
for both serving and non serving containers.
1531-
ref: http://bit.ly/image-digests
1531+
ref: https://bit.ly/image-digests
15321532
type: array
15331533
items:
15341534
description: ContainerStatus holds the information of container name and image digest value
@@ -1549,7 +1549,7 @@ spec:
15491549
The digests are resolved during the creation of Revision.
15501550
ContainerStatuses holds the container name and image digests
15511551
for both serving and non serving containers.
1552-
ref: http://bit.ly/image-digests
1552+
ref: https://bit.ly/image-digests
15531553
type: array
15541554
items:
15551555
description: ContainerStatus holds the information of container name and image digest value

config/core/configmaps/autoscaler.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ metadata:
2222
app.kubernetes.io/name: knative-serving
2323
app.kubernetes.io/version: devel
2424
annotations:
25-
knative.dev/example-checksum: "47c2487f"
25+
knative.dev/example-checksum: "c727b3e8"
2626
data:
2727
_example: |
2828
################################
@@ -172,7 +172,7 @@ data:
172172
# The `unit` is one concurrent request proxied by the activator.
173173
# activator-capacity must be at least 1.
174174
# This value is used for computation of the Activator subset size.
175-
# See the algorithm here: http://bit.ly/38XiCZ3.
175+
# See the algorithm here: https://bit.ly/38XiCZ3.
176176
# TODO(vagababov): tune after actual benchmarking.
177177
activator-capacity: "100.0"
178178

docs/serving-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,7 +1476,7 @@ to their respective digests and their container name.
14761476
The digests are resolved during the creation of Revision.
14771477
ContainerStatuses holds the container name and image digests
14781478
for both serving and non serving containers.
1479-
ref: <a href="http://bit.ly/image-digests">http://bit.ly/image-digests</a></p>
1479+
ref: <a href="https://bit.ly/image-digests">https://bit.ly/image-digests</a></p>
14801480
</td>
14811481
</tr>
14821482
<tr>
@@ -1495,7 +1495,7 @@ to their respective digests and their container name.
14951495
The digests are resolved during the creation of Revision.
14961496
ContainerStatuses holds the container name and image digests
14971497
for both serving and non serving containers.
1498-
ref: <a href="http://bit.ly/image-digests">http://bit.ly/image-digests</a></p>
1498+
ref: <a href="https://bit.ly/image-digests">https://bit.ly/image-digests</a></p>
14991499
</td>
15001500
</tr>
15011501
<tr>

pkg/apis/serving/v1/revision_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ type RevisionStatus struct {
145145
// The digests are resolved during the creation of Revision.
146146
// ContainerStatuses holds the container name and image digests
147147
// for both serving and non serving containers.
148-
// ref: http://bit.ly/image-digests
148+
// ref: https://bit.ly/image-digests
149149
// +optional
150150
ContainerStatuses []ContainerStatus `json:"containerStatuses,omitempty"`
151151

@@ -154,7 +154,7 @@ type RevisionStatus struct {
154154
// The digests are resolved during the creation of Revision.
155155
// ContainerStatuses holds the container name and image digests
156156
// for both serving and non serving containers.
157-
// ref: http://bit.ly/image-digests
157+
// ref: https://bit.ly/image-digests
158158
// +optional
159159
InitContainerStatuses []ContainerStatus `json:"initContainerStatuses,omitempty"`
160160

pkg/autoscaler/aggregation/max/window.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type entry struct {
2828
}
2929

3030
// window is a circular buffer which keeps track of the maximum value observed in a particular time.
31-
// Based on the "ascending minima algorithm" (http://web.archive.org/web/20120805114719/http://home.tiac.net/~cri/2001/slidingmin.html).
31+
// Based on the "ascending minima algorithm" (https://web.archive.org/web/20120805114719/http://home.tiac.net/~cri/2001/slidingmin.html).
3232
type window struct {
3333
maxima []entry
3434
first, length int

0 commit comments

Comments
 (0)