Skip to content

docs: update HTTP links to HTTPS in comments and docs#16551

Merged
knative-prow[bot] merged 4 commits intoknative:mainfrom
Ankitsinghsisodya:fix/http-to-https-links
Apr 17, 2026
Merged

docs: update HTTP links to HTTPS in comments and docs#16551
knative-prow[bot] merged 4 commits intoknative:mainfrom
Ankitsinghsisodya:fix/http-to-https-links

Conversation

@Ankitsinghsisodya
Copy link
Copy Markdown
Contributor

@Ankitsinghsisodya Ankitsinghsisodya commented Apr 17, 2026

Closes #16552

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

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
Copilot AI review requested due to automatic review settings April 17, 2026 11:48
@knative-prow knative-prow bot added kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. size/S Denotes a PR that changes 10-29 lines, ignoring generated files. labels Apr 17, 2026
@knative-prow
Copy link
Copy Markdown

knative-prow bot commented Apr 17, 2026

Hi @Ankitsinghsisodya. Thanks for your PR.

I'm waiting for a knative member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Tip

We noticed you've done this a few times! Consider joining the org to skip this step and gain /lgtm and other bot rights. We recommend asking approvers on your previous PRs to sponsor you.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@knative-prow knative-prow bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Apr 17, 2026
@knative-prow knative-prow bot requested review from dprotaso and skonto April 17, 2026 11:48
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates documentation/comment reference links from HTTP to HTTPS to avoid insecure link targets across code comments, CRD YAML, configmaps, and generated API docs.

Changes:

  • Replaced HTTP links with HTTPS in Go source comments and Markdown docs.
  • Updated CRD YAML field descriptions and configmap comments to use HTTPS links.
  • Updated generated API reference HTML links to HTTPS.

Reviewed changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
pkg/autoscaler/aggregation/max/window.go Updates Wayback Machine reference link to HTTPS in algorithm comment.
pkg/apis/serving/v1/revision_types.go Updates image digest reference link to HTTPS in RevisionStatus field comments.
config/core/300-resources/revision.yaml Updates image digest reference link to HTTPS in CRD schema descriptions.
config/core/configmaps/autoscaler.yaml Updates autoscaler algorithm reference link to HTTPS in config comment.
docs/serving-api.md Updates generated API reference links to HTTPS for RevisionStatus fields.
DEVELOPMENT.md Updates GCP console link to HTTPS.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@@ -1549,7 +1549,7 @@ spec:
The digests are resolved during the creation of Revision.
ContainerStatuses holds the container name and image digests
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the initContainerStatuses schema description, the text still says "ContainerStatuses holds..." which is inaccurate for initContainerStatuses. Update the description to refer to InitContainerStatuses (ideally by regenerating this CRD from the Go types after fixing the source comment).

Suggested change
ContainerStatuses holds the container name and image digests
InitContainerStatuses holds the container name and image digests

Copilot uses AI. Check for mistakes.
Comment thread docs/serving-api.md
Comment on lines 1496 to 1497
ContainerStatuses holds the container name and image digests
for both serving and non serving containers.
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The initContainerStatuses API reference text still says "ContainerStatuses holds..." which is misleading for this field. Please update the underlying Go type comment and regenerate the API reference docs so this reads correctly for initContainerStatuses.

Suggested change
ContainerStatuses holds the container name and image digests
for both serving and non serving containers.
InitContainerStatuses holds the container name and image digests
for init containers.

Copilot uses AI. Check for mistakes.
@@ -154,7 +154,7 @@ type RevisionStatus struct {
// The digests are resolved during the creation of Revision.
// ContainerStatuses holds the container name and image digests
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The doc string for InitContainerStatuses still says "ContainerStatuses holds..." which is misleading for this field. Please update this sentence to refer to InitContainerStatuses (or rephrase to avoid repeating the field name) so the API comment matches the actual field.

Suggested change
// ContainerStatuses holds the container name and image digests
// InitContainerStatuses holds the container name and image digests

Copilot uses AI. Check for mistakes.
@knative-prow knative-prow bot added size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. and removed size/S Denotes a PR that changes 10-29 lines, ignoring generated files. labels Apr 17, 2026
@codecov
Copy link
Copy Markdown

codecov bot commented Apr 17, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.15%. Comparing base (6784d14) to head (b6bf886).
⚠️ Report is 5 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #16551      +/-   ##
==========================================
- Coverage   80.18%   80.15%   -0.03%     
==========================================
  Files         217      217              
  Lines       13532    13532              
==========================================
- Hits        10850    10846       -4     
+ Misses       2319     2318       -1     
- Partials      363      368       +5     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@knative-prow knative-prow bot added size/S Denotes a PR that changes 10-29 lines, ignoring generated files. and removed size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. labels Apr 17, 2026
@dprotaso
Copy link
Copy Markdown
Member

/lgtm
/approve

@knative-prow knative-prow bot added the lgtm Indicates that a PR is ready to be merged. label Apr 17, 2026
@knative-prow
Copy link
Copy Markdown

knative-prow bot commented Apr 17, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: Ankitsinghsisodya, dprotaso

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@dprotaso
Copy link
Copy Markdown
Member

/ok-to-test

@knative-prow knative-prow bot added approved Indicates a PR has been approved by an approver from all required OWNERS files. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Apr 17, 2026
@dprotaso
Copy link
Copy Markdown
Member

/retest

2 similar comments
@dprotaso
Copy link
Copy Markdown
Member

/retest

@linkvt
Copy link
Copy Markdown
Contributor

linkvt commented Apr 17, 2026

/retest

@knative-prow knative-prow bot merged commit a4013d9 into knative:main Apr 17, 2026
73 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. lgtm Indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/S Denotes a PR that changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

docs: update insecure HTTP links to HTTPS in comments and docs

4 participants