Skip to content

Commit 8326697

Browse files
committed
rewrite all links to prs to k8s links
1 parent fe6b15b commit 8326697

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

docs/admin/cluster-large.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To avoid running into cloud provider quota issues, when creating a cluster with
6464

6565
### Addon Resources
6666

67-
To prevent memory leaks or other resource issues in [cluster addons](../../cluster/addons/) from consuming all the resources available on a node, Kubernetes sets resource limits on addon containers to limit the CPU and Memory resources they can consume (See PR [#10653](https://github.com/GoogleCloudPlatform/kubernetes/pull/10653/files) and [#10778](https://github.com/GoogleCloudPlatform/kubernetes/pull/10778/files)).
67+
To prevent memory leaks or other resource issues in [cluster addons](../../cluster/addons/) from consuming all the resources available on a node, Kubernetes sets resource limits on addon containers to limit the CPU and Memory resources they can consume (See PR [#10653](http://pr.k8s.io/10653/files) and [#10778](http://pr.k8s.io/10778/files)).
6868

6969
For example:
7070

docs/design/event_compression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ This demonstrates what would have been 20 separate entries (indicating schedulin
113113
* PR [#4157](http://issue.k8s.io/4157): Add "Update Event" to Kubernetes API
114114
* PR [#4206](http://issue.k8s.io/4206): Modify Event struct to allow compressing multiple recurring events in to a single event
115115
* PR [#4306](http://issue.k8s.io/4306): Compress recurring events in to a single event to optimize etcd storage
116-
* PR [#4444](https://github.com/GoogleCloudPlatform/kubernetes/pull/4444): Switch events history to use LRU cache instead of map
116+
* PR [#4444](http://pr.k8s.io/4444): Switch events history to use LRU cache instead of map
117117

118118

119119
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->

docs/design/security.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@ A pod runs in a *security context* under a *service account* that is defined by
127127
### Related design discussion
128128

129129
* [Authorization and authentication](access.md)
130-
* [Secret distribution via files](https://github.com/GoogleCloudPlatform/kubernetes/pull/2030)
130+
* [Secret distribution via files](http://pr.k8s.io/2030)
131131
* [Docker secrets](https://github.com/docker/docker/pull/6697)
132132
* [Docker vault](https://github.com/docker/docker/issues/10310)
133133
* [Service Accounts:](service_accounts.md)
134-
* [Secret volumes](https://github.com/GoogleCloudPlatform/kubernetes/pull/4126)
134+
* [Secret volumes](http://pr.k8s.io/4126)
135135

136136
## Specific Design Points
137137

docs/design/security_context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ It is up to an admission plugin to determine if the security context is acceptab
192192
time of writing, the admission control plugin for security contexts will only allow a context that
193193
has defined capabilities or privileged. Contexts that attempt to define a UID or SELinux options
194194
will be denied by default. In the future the admission plugin will base this decision upon
195-
configurable policies that reside within the [service account](https://github.com/GoogleCloudPlatform/kubernetes/pull/2297).
195+
configurable policies that reside within the [service account](http://pr.k8s.io/2297).
196196

197197

198198
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->

hack/cherry_pick_pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ cleanbranch="${NEWBRANCHUNIQ}"
100100
gitamcleanup=true
101101
for pull in "${PULLS[@]}"; do
102102
echo "+++ Downloading patch to /tmp/${pull}.patch (in case you need to do this again)"
103-
curl -o "/tmp/${pull}.patch" -sSL "https://github.com/GoogleCloudPlatform/kubernetes/pull/${pull}.patch"
103+
curl -o "/tmp/${pull}.patch" -sSL "http://pr.k8s.io/${pull}.patch"
104104
echo
105105
echo "+++ About to attempt cherry pick of PR. To reattempt:"
106106
echo " $ git am -3 /tmp/${pull}.patch"

pkg/apiserver/apiserver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1943,7 +1943,7 @@ func TestCreateNotFound(t *testing.T) {
19431943
handler := handle(map[string]rest.Storage{
19441944
"simple": &SimpleRESTStorage{
19451945
// storage.Create can fail with not found error in theory.
1946-
// See https://github.com/GoogleCloudPlatform/kubernetes/pull/486#discussion_r15037092.
1946+
// See http://pr.k8s.io/486#discussion_r15037092.
19471947
errors: map[string]error{"create": apierrs.NewNotFound("simple", "id")},
19481948
},
19491949
})

pkg/kubectl/resource/visitor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const constSTDINstr string = "STDIN"
4040

4141
// Visitor lets clients walk a list of resources.
4242
// TODO: we should rethink how we handle errors in the visit loop
43-
// (See https://github.com/GoogleCloudPlatform/kubernetes/pull/9357#issuecomment-109600305)
43+
// (See http://pr.k8s.io/9357#issuecomment-109600305)
4444
type Visitor interface {
4545
Visit(VisitorFunc) error
4646
}

0 commit comments

Comments
 (0)