Skip to content

Commit 4eca50e

Browse files
committed
Fix broken link in architecture section
1 parent e6ce9eb commit 4eca50e

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

architecture/additional_concepts/other_api_objects.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ By adding a limit range to your namespace, you can enforce the minimum and
2222
maximum amount of CPU and Memory consumed by an individual pod or container.
2323

2424
See the
25-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/admission_control_limit_range.md[Kubernetes
26-
documentation] for more information.
25+
https://kubernetes.io/docs/admin/admission-controllers/#limitranger[Kurbenetes documentation]
26+
for more information.
2727

2828
== ResourceQuota
2929

@@ -36,12 +36,12 @@ cluster resources.
3636

3737
ifdef::openshift-enterprise,openshift-origin[]
3838
See xref:../../admin_guide/quota.adoc#admin-guide-quota[Cluster Administration] and
39-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/admin/resource-quota.md[Kubernetes
39+
https://kubernetes.io/docs/admin/admission-controllers/#resourcequota[Kubernetes
4040
documentation] for more information on `*ResourceQuota*`.
4141
endif::[]
4242

4343
ifdef::openshift-dedicated,openshift-online[]
44-
See https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/admin/resource-quota.md[Kubernetes
44+
See https://kubernetes.io/docs/admin/admission-controllers/#resourcequota[Kubernetes
4545
documentation] or contact your administrator for more information on `*ResourceQuota*`.
4646
endif::[]
4747

@@ -69,7 +69,7 @@ administrator. Persistent volumes provide durable storage for stateful
6969
applications.
7070

7171
See the
72-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/persistent-storage.md[Kubernetes
72+
https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistent-volumes[Kubernetes
7373
documentation] for more information.
7474

7575
== PersistentVolumeClaim
@@ -81,7 +81,7 @@ binds them together. The claim is then used as a volume by a pod. Kubernetes
8181
makes sure the volume is available on the same node as the pod that requires it.
8282

8383
See the
84-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/persistent-storage.md[Kubernetes
84+
https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims[Kubernetes
8585
documentation] for more information.
8686
endif::[]
8787

architecture/additional_concepts/overview.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
If you want to contribute to {product-title} documentation, see our
1010
https://github.com/openshift/openshift-docs[source repository] and
11-
https://github.com/openshift/openshift-docs/blob/master/contributing_to_docs/doc_guidelines.html[guidelines]
11+
https://github.com/openshift/openshift-docs/blob/master/contributing_to_docs/doc_guidelines.adoc[guidelines]
1212
to get started.

architecture/additional_concepts/storage.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ endif::[]
242242
=== Capacity
243243

244244
Generally, a PV will have a specific storage capacity. This is set using the
245-
PV's `capacity` attribute. See the
246-
link:https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/resources.md[Kubernetes
247-
Resource Model] to understand the units expected by `capacity`.
245+
PV's `*capacity*` attribute. See the
246+
link:https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduling/resources.md[Kubernetes
247+
Resource Model] to understand the units expected by `*capacity*`.
248248

249249
Currently, storage capacity is the only resource that can be set or requested.
250250
Future attributes may include IOPS, throughput, etc.
@@ -550,7 +550,7 @@ access modes.
550550

551551
Claims, like pods, can request specific quantities of a resource. In this case,
552552
the request is for storage. The same
553-
link:https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/resources.md[resource
553+
https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduling/resources.md#the-resource-model[resource
554554
model] applies to both volumes and claims.
555555

556556
[[pvc-claims-as-volumes]]

architecture/core_concepts/deployments.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ toc::[]
1616
== Replication Controllers
1717

1818
A
19-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/user-guide/replication-controller.md[replication
19+
https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/[replication
2020
controller] ensures that a specified number of replicas of a pod are running at
2121
all times. If pods exit or are deleted, the replication controller acts to
2222
instantiate more up to the defined number. Likewise, if there are more running

architecture/core_concepts/pods_and_services.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ A service or replication controller that is defined to use pods with the
468468
*role=webserver* label treats both of these pods as part of the same group.
469469

470470
The
471-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/user-guide/labels.md[Kubernetes
471+
https://kubernetes.io/docs/concepts/overview/working-with-objects/labels[Kubernetes
472472
documentation] has more information on labels.
473473

474474
[[endpoints]]

architecture/core_concepts/projects_and_users.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Most objects in the system are scoped by namespace, but some are
7777
excepted and have no namespace, including nodes and users.
7878

7979
The
80-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/admin/namespaces.md[Kubernetes
80+
https://kubernetes.io/docs/tasks/administer-cluster/namespaces/[Kubernetes
8181
documentation] has more information on namespaces.
8282

8383
[[projects]]

creating_images/metadata.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ LABEL io.openshift.non-scalable true
115115
|This label suggests how much resources the container image might need in order to
116116
work properly. The UI might warn the user that deploying this container image may
117117
exceed their user quota. The values must be compatible with
118-
https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/resources.md#resource-quantities[Kubernetes
118+
https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduling/resources.md#resource-quantities[Kubernetes
119119
quantity].
120120

121121
====

0 commit comments

Comments
 (0)