-
Notifications
You must be signed in to change notification settings - Fork 1.2k
docs: update HTTP links to HTTPS in comments and docs #16551
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
Changes from all commits
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -1476,7 +1476,7 @@ to their respective digests and their container name. | |||||||||
| The digests are resolved during the creation of Revision. | ||||||||||
| ContainerStatuses holds the container name and image digests | ||||||||||
| for both serving and non serving containers. | ||||||||||
| ref: <a href="http://bit.ly/image-digests">http://bit.ly/image-digests</a></p> | ||||||||||
| ref: <a href="https://bit.ly/image-digests">https://bit.ly/image-digests</a></p> | ||||||||||
| </td> | ||||||||||
| </tr> | ||||||||||
| <tr> | ||||||||||
|
|
@@ -1495,7 +1495,7 @@ to their respective digests and their container name. | |||||||||
| The digests are resolved during the creation of Revision. | ||||||||||
| ContainerStatuses holds the container name and image digests | ||||||||||
| for both serving and non serving containers. | ||||||||||
|
Comment on lines
1496
to
1497
|
||||||||||
| 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. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -145,7 +145,7 @@ type RevisionStatus struct { | |||||
| // The digests are resolved during the creation of Revision. | ||||||
| // ContainerStatuses holds the container name and image digests | ||||||
| // for both serving and non serving containers. | ||||||
| // ref: http://bit.ly/image-digests | ||||||
| // ref: https://bit.ly/image-digests | ||||||
| // +optional | ||||||
| ContainerStatuses []ContainerStatus `json:"containerStatuses,omitempty"` | ||||||
|
|
||||||
|
|
@@ -154,7 +154,7 @@ type RevisionStatus struct { | |||||
| // The digests are resolved during the creation of Revision. | ||||||
| // ContainerStatuses holds the container name and image digests | ||||||
|
||||||
| // ContainerStatuses holds the container name and image digests | |
| // InitContainerStatuses holds the container name and image digests |
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.
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).