Skip to content

Commit 0adfecd

Browse files
committed
fix: use https:// instead of http://
1 parent fd7bc7a commit 0adfecd

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

communication/meeting-notes-archive/201902-201911_Community_Meeting_Notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2325,6 +2325,6 @@ Twitter | [Sep 19th](https://twitter.com/stephenaugustus/status/1174797710043430
23252325
* bentheelder - Shoutout to @jeefy for the really shiny and useful looking structured Kubernetes release notes viewer demo in today's #sig-release meeting, looking forward to seeing more about this!
23262326
* Maria - shoutout to Silvia Moura Pina (@smourapina) for putting together a workflow to enable the CI signal subteam of the release team keep on top of flagging issues from e2e tests and coordinate follow-ups and to Jorge Alarcon (@Jorge) for spotting an opportunity to offer broader transparency to what the CI signal team is working on, suggesting a structure and kicking off implementation (find current version at [https://github.com/orgs/kubernetes/projects/11](https://github.com/orgs/kubernetes/projects/11))
23272327
* spiffxp - shouts to Josh Berkus (@jberkus) for taking notes during today’s steering committee meeting, our google doc clearly becomes way more difficult to use with so many people looking at it, and the written record is invaluable
2328-
* spiffxp - shoutout to Katharine Berry (@Katharine) for moving us from gubernator to spyglass for all of our test result viewing needs! [http://sigs.k8s.io/prow/pkg/spyglass ](http://sigs.k8s.io/prow/pkg/spyglass)
2328+
* spiffxp - shoutout to Katharine Berry (@Katharine) for moving us from gubernator to spyglass for all of our test result viewing needs! [https://sigs.k8s.io/prow/pkg/spyglass ](https://sigs.k8s.io/prow/pkg/spyglass)
23292329
* codenrhoden - Shoutout to Michelle Au (@msau42) for her patience and helpful guidance in getting a very large PR merged!
23302330
* @strebel - @jeefy and @onyiny-ang for all their awesome work on the Release-Notes team for 1.14. Especially @jeefy’s work on the Release-Notes website concept

contributors/devel/automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ processes.
99
## Tide
1010

1111
This project formerly used a Submit Queue, it has since been replaced by
12-
[Tide](http://sigs.k8s.io/prow/cmd/tide).
12+
[Tide](https://sigs.k8s.io/prow/cmd/tide).
1313

1414
### Ready to merge status
1515

contributors/devel/sig-testing/e2e-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ A quick overview of how we run e2e CI on Kubernetes.
644644
645645
We run a battery of [release-blocking jobs](https://testgrid.k8s.io/sig-release-master-blocking)
646646
against `HEAD` of the master branch on a continuous basis, and block merges
647-
via [Tide](http://sigs.k8s.io/prow/cmd/tide) on a subset of those
647+
via [Tide](https://sigs.k8s.io/prow/cmd/tide) on a subset of those
648648
tests if they fail.
649649
650650
CI results can be found at [ci-test.k8s.io](http://ci-test.k8s.io), e.g.

contributors/devel/sig-testing/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ If the failure seems unrelated to the change you're submitting:
229229
- if you don't get a response in 24 hours, engage with the SIG on their channel on the [Kubernetes slack](http://slack.k8s.io/) and/or attend one of the [SIG meetings][sig-meetings] to ask for input.
230230

231231
[prow-url]: https://prow.k8s.io
232-
[prow-git]: http://sigs.k8s.io/prow/pkg
232+
[prow-git]: https://sigs.k8s.io/prow/pkg
233233
[prow-doc]: https://kubernetes.io/blog/2018/08/29/the-machines-can-do-the-work-a-story-of-kubernetes-testing-ci-and-automating-the-contributor-experience/#enter-prow
234234
[membership]: https://github.com/kubernetes/community/blob/master/community-membership.md#member
235235
[k-teams]: https://github.com/orgs/kubernetes/teams

contributors/guide/owners.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ of OWNERS files.
2222

2323
## OWNERS spec
2424

25-
The [k8s.io/test-infra/prow/repoowners package](http://sigs.k8s.io/prow/pkg/repoowners/repoowners.go)
25+
The [k8s.io/test-infra/prow/repoowners package](https://sigs.k8s.io/prow/pkg/repoowners/repoowners.go)
2626
is the main consumer of OWNERS files. If this page is out of date, look there.
2727

2828
### OWNERS
@@ -253,20 +253,20 @@ Kubernetes uses the Prow Blunderbuss plugin and Tide.
253253
Tide uses GitHub queries to select PRs into “tide pools”, runs as many in a
254254
batch as it can (“tide comes in”), and merges them (“tide goes out”).
255255

256-
- [Blunderbuss plugin](http://sigs.k8s.io/prow/pkg/plugins/blunderbuss):
256+
- [Blunderbuss plugin](https://sigs.k8s.io/prow/pkg/plugins/blunderbuss):
257257
- responsible for determining **reviewers**
258-
- [Tide](http://sigs.k8s.io/prow/cmd/tide):
258+
- [Tide](https://sigs.k8s.io/prow/cmd/tide):
259259
- responsible for automatically running batch tests and merging multiple PRs together whenever possible.
260260
- responsible for retriggering stale PR tests.
261261
- responsible for updating a GitHub status check explaining why a PR can't be merged (eg: a
262262
missing `lgtm` or `approved` label)
263263

264-
### [`prow`](http://sigs.k8s.io/prow/pkg)
264+
### [`prow`](https://sigs.k8s.io/prow/pkg)
265265

266266
Prow receives events from GitHub, and reacts to them. It is effectively stateless. The following
267267
pieces of prow are used to implement the code review process above.
268268

269-
- [cmd: tide](http://sigs.k8s.io/prow/cmd/tide)
269+
- [cmd: tide](https://sigs.k8s.io/prow/cmd/tide)
270270
- per-repo configuration:
271271
- `labels`: list of labels required to be present for merge (eg: `lgtm`)
272272
- `missingLabels`: list of labels required to be missing for merge (eg: `do-not-merge/hold`)
@@ -278,10 +278,10 @@ pieces of prow are used to implement the code review process above.
278278
- merges PR's once they meet the appropriate criteria as configured above
279279
- if there are any presubmit prow jobs for the repo the PR is against, they will be re-run one
280280
final time just prior to merge
281-
- [plugin: assign](http://sigs.k8s.io/prow/pkg/plugins/assign)
281+
- [plugin: assign](https://sigs.k8s.io/prow/pkg/plugins/assign)
282282
- assigns GitHub users in response to `/assign` comments on a PR
283283
- unassigns GitHub users in response to `/unassign` comments on a PR
284-
- [plugin: approve](http://sigs.k8s.io/prow/pkg/plugins/approve)
284+
- [plugin: approve](https://sigs.k8s.io/prow/pkg/plugins/approve)
285285
- per-repo configuration:
286286
- `issue_required`: defaults to `false`; when `true`, require that the PR description link to
287287
an issue, or that at least one **approver** issues a `/approve no-issue`
@@ -291,12 +291,12 @@ pieces of prow are used to implement the code review process above.
291291
OWNERS files has `/approve`'d
292292
- comments as required OWNERS files are satisfied
293293
- removes outdated approval status comments
294-
- [plugin: blunderbuss](http://sigs.k8s.io/prow/pkg/plugins/blunderbuss)
294+
- [plugin: blunderbuss](https://sigs.k8s.io/prow/pkg/plugins/blunderbuss)
295295
- determines **reviewers** and requests their reviews on PR's
296-
- [plugin: lgtm](http://sigs.k8s.io/prow/pkg/plugins/lgtm)
296+
- [plugin: lgtm](https://sigs.k8s.io/prow/pkg/plugins/lgtm)
297297
- adds the `lgtm` label when a **reviewer** comments `/lgtm` on a PR
298298
- the **PR author** may not `/lgtm` their own PR
299-
- [pkg: k8s.io/test-infra/prow/repoowners](http://sigs.k8s.io/prow/pkg/repoowners/repoowners.go)
299+
- [pkg: k8s.io/test-infra/prow/repoowners](https://sigs.k8s.io/prow/pkg/repoowners/repoowners.go)
300300
- parses OWNERS and OWNERS_ALIAS files
301301
- if the `no_parent_owners` option is encountered, parent owners are excluded from having
302302
any influence over files adjacent to or underneath of the current OWNERS file

contributors/guide/pull-requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ Once the tests pass, and the reviewer adds the `lgtm` and `approved` labels, the
595595
The merge pool is needed to make sure no incompatible changes have been introduced by other pull requests since the tests were last run on your pull request.
596596
<!-- TODO: create parallel instructions for reviewers -->
597597

598-
[Tide](http://sigs.k8s.io/prow/cmd/tide) will manage the merge pool
598+
[Tide](https://sigs.k8s.io/prow/cmd/tide) will manage the merge pool
599599
automatically. It uses GitHub queries to select PRs into “tide pools”,
600600
runs as many in a batch as it can (“tide comes in”), and merges them (“tide goes out”).
601601

contributors/guide/review-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ git checkout foo
145145
[KEEP THE SPACE SHUTTLE FLYING]: https://github.com/kubernetes/kubernetes/blob/master/pkg/controller/volume/persistentvolume/pv_controller.go#L57-L117
146146
[commit message guidelines]: ./pull-requests.md#7-commit-message-guidelines
147147
[GitHub Status]: https://help.github.com/en/github/setting-up-and-managing-your-github-profile/personalizing-your-profile#setting-a-status
148-
[Blunderbuss]: http://sigs.k8s.io/prow/pkg/plugins/approve/approvers/
148+
[Blunderbuss]: https://sigs.k8s.io/prow/pkg/plugins/approve/approvers/
149149
[emeritus_approver]: ./owners.md#emeritus
150150
[Keeping the Bar High - How to be a bad ass Code Reviewer, Tim Hockin]: https://www.youtube.com/watch?v=OZVv7-o8i40
151151
[Kubernetes Code Reviewing with Tim Hockin]: https://docs.google.com/document/d/15y8nIgWMzptHcYIeqf4vLJPttE3Fj_ht4I6Nj4ghDLA/edit#heading=h.3dchnigrxf5y

contributors/guide/style-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ relative links. However, how and what they're being linked to can vary widely.
635635
```
636636
The super cool [prow tool] resides in the test-infra repo under the kubernetes organization
637637

638-
[prow tool]: http://sigs.k8s.io/prow/README.md
638+
[prow tool]: https://sigs.k8s.io/prow/README.md
639639
```
640640

641641

github-management/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ intentions. [For more details please see community issue #1407](https://github.c
103103

104104
We have created a number of tools to help with the management of or Github
105105
repositories and organizations:
106-
- [prow](http://sigs.k8s.io/prow/pkg): Prow is our system for handling
106+
- [prow](https://sigs.k8s.io/prow/pkg): Prow is our system for handling
107107
GitHub events and commands for Kubernetes. It is comprised of a number of
108108
modules/plugins. A couple key ones for GitHub management are below, but a full
109109
list of commands is available [here](https://go.k8s.io/bot-commands)
110-
- [branchprotector](http://sigs.k8s.io/prow/cmd/branchprotector):
110+
- [branchprotector](https://sigs.k8s.io/prow/cmd/branchprotector):
111111
enforce branch protection settings across an organization
112-
- [peribolos](http://sigs.k8s.io/prow/cmd/peribolos): Manage Github
112+
- [peribolos](https://sigs.k8s.io/prow/cmd/peribolos): Manage Github
113113
organization and team membership based on a defined YAML configuration
114114
- [label_sync](https://git.k8s.io/test-infra/label_sync): Add, modify, delete,
115115
and migrate labels across an entire organization based on a defined YAML

github-management/permissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ member in the organization.
9797
[org permissions]:
9898
https://help.github.com/articles/permission-levels-for-an-organization/
9999
[OWNERS]: /contributors/guide/owners.md
100-
[peribolos]: http://sigs.k8s.io/prow/cmd/peribolos
100+
[peribolos]: https://sigs.k8s.io/prow/cmd/peribolos
101101
[repo permissions]:
102102
https://help.github.com/articles/repository-permission-levels-for-an-organization/

0 commit comments

Comments
 (0)