From 80a2fff4dc6ce91f1c0f38d0119aedb12367f701 Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Tue, 25 Apr 2017 20:09:38 -0700 Subject: [PATCH] Deprecation complete: gpus ... (#3537) --- .../concepts/cluster-administration/logging.md | 3 +++ .../resource-usage-monitoring.md | 3 +++ docs/concepts/workloads/controllers/petset.md | 2 ++ .../port-forward-access-application-cluster.md | 3 +++ .../http-proxy-access-api.md | 3 +++ .../projected-volume.md | 3 +++ .../logging-elasticsearch-kibana.md | 3 +++ .../logging-stackdriver.md | 3 +++ .../kubectl/get-shell-running-container.md | 3 +++ docs/tasks/manage-gpus/scheduling-gpus.md | 3 +++ .../connecting-to-applications-port-forward.md | 10 ---------- .../connecting-to-applications-proxy.md | 10 ---------- docs/user-guide/getting-into-containers.md | 10 ---------- docs/user-guide/gpus.md | 9 --------- docs/user-guide/logging/elasticsearch.md | 10 ---------- docs/user-guide/logging/overview.md | 10 ---------- docs/user-guide/logging/stackdriver.md | 10 ---------- docs/user-guide/monitoring.md | 9 --------- docs/user-guide/petset/bootstrapping/index.md | 18 ------------------ docs/user-guide/projected-volume/index.md | 10 ---------- 20 files changed, 29 insertions(+), 106 deletions(-) delete mode 100644 docs/user-guide/connecting-to-applications-port-forward.md delete mode 100644 docs/user-guide/connecting-to-applications-proxy.md delete mode 100644 docs/user-guide/getting-into-containers.md delete mode 100644 docs/user-guide/gpus.md delete mode 100644 docs/user-guide/logging/elasticsearch.md delete mode 100644 docs/user-guide/logging/overview.md delete mode 100644 docs/user-guide/logging/stackdriver.md delete mode 100644 docs/user-guide/monitoring.md delete mode 100644 docs/user-guide/petset/bootstrapping/index.md delete mode 100644 docs/user-guide/projected-volume/index.md diff --git a/docs/concepts/cluster-administration/logging.md b/docs/concepts/cluster-administration/logging.md index eac854e9e5..543828fb75 100644 --- a/docs/concepts/cluster-administration/logging.md +++ b/docs/concepts/cluster-administration/logging.md @@ -6,6 +6,9 @@ title: Logging and Monitoring Cluster Activity redirect_from: - "/docs/concepts/clusters/logging/" - "/docs/concepts/clusters/logging.html" +redirect_from: +- "/docs/user-guide/logging/overview/" +- "/docs/user-guide/logging/overview.html" --- Application and systems logs can help you understand what is happening inside your cluster. The logs are particularly useful for debugging problems and monitoring cluster activity. Most modern applications have some kind of logging mechanism; as such, most container engines are likewise designed to support some kind of logging. The easiest and most embraced logging method for containerized applications is to write to the standard output and standard error streams. diff --git a/docs/concepts/cluster-administration/resource-usage-monitoring.md b/docs/concepts/cluster-administration/resource-usage-monitoring.md index 56ceb51309..86061e852b 100644 --- a/docs/concepts/cluster-administration/resource-usage-monitoring.md +++ b/docs/concepts/cluster-administration/resource-usage-monitoring.md @@ -2,6 +2,9 @@ assignees: - mikedanese title: Resource Usage Monitoring +redirect_from: +- "/docs/user-guide/monitoring/" +- "/docs/user-guide/monitoring.html" --- Understanding how an application behaves when deployed is crucial to scaling the application and providing a reliable service. In a Kubernetes cluster, application performance can be examined at many different levels: containers, [pods](/docs/user-guide/pods), [services](/docs/user-guide/services), and whole clusters. As part of Kubernetes we want to provide users with detailed resource usage information about their running applications at all these levels. This will give users deep insights into how their applications are performing and where possible application bottlenecks may be found. In comes [Heapster](https://github.com/kubernetes/heapster), a project meant to provide a base monitoring platform on Kubernetes. diff --git a/docs/concepts/workloads/controllers/petset.md b/docs/concepts/workloads/controllers/petset.md index 3e2c7fb870..f4a77cda2e 100644 --- a/docs/concepts/workloads/controllers/petset.md +++ b/docs/concepts/workloads/controllers/petset.md @@ -11,6 +11,8 @@ title: PetSets redirect_from: - "/docs/concepts/abstractions/controllers/petsets/" - "/docs/concepts/abstractions/controllers/petsets.html" +- "/docs/user-guide/petset/bootstrapping/" +- "/docs/user-guide/petset/bootstrapping/index.html" --- __Warning:__ Starting in Kubernetes version 1.5, PetSet has been renamed to [StatefulSet](/docs/concepts/abstractions/controllers/statefulsets). To use (or continue to use) PetSet in Kubernetes 1.5, you _must_ [migrate](/docs/tasks/manage-stateful-set/upgrade-pet-set-to-stateful-set/) your existing PetSets to StatefulSets. For information on working with StatefulSet, see the tutorial on [how to run replicated stateful applications](/docs/tutorials/stateful-application/run-replicated-stateful-application). diff --git a/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md b/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md index eb8104b684..ed1d749540 100644 --- a/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md +++ b/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md @@ -1,5 +1,8 @@ --- title: Using Port Forwarding to Access Applications in a Cluster +redirect_from: +- "/docs/user-guide/connecting-to-applications-port-forward/" +- "/docs/user-guide/connecting-to-applications-port-forward.html" --- {% capture overview %} diff --git a/docs/tasks/access-kubernetes-api/http-proxy-access-api.md b/docs/tasks/access-kubernetes-api/http-proxy-access-api.md index b7f9ee899c..659bc65445 100644 --- a/docs/tasks/access-kubernetes-api/http-proxy-access-api.md +++ b/docs/tasks/access-kubernetes-api/http-proxy-access-api.md @@ -1,5 +1,8 @@ --- title: Using an HTTP Proxy to Access the Kubernetes API +redirect_from: +- "/docs/user-guide/connecting-to-applications-proxy/" +- "/docs/user-guide/connecting-to-applications-proxy.html" --- {% capture overview %} diff --git a/docs/tasks/configure-pod-container/projected-volume.md b/docs/tasks/configure-pod-container/projected-volume.md index 656e283d21..22e9f25916 100644 --- a/docs/tasks/configure-pod-container/projected-volume.md +++ b/docs/tasks/configure-pod-container/projected-volume.md @@ -3,6 +3,9 @@ assignees: - jpeeler - pmorie title: Using Projected volumes +redirect_from: +- "/docs/user-guide/projected-volume/" +- "/docs/user-guide/projected-volume/index.html" --- The _projected volume_ is a volume that projects several existing volume sources diff --git a/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana.md b/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana.md index 34c302c777..b990cbf0d4 100644 --- a/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana.md +++ b/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana.md @@ -3,6 +3,9 @@ assignees: - crassirostris - piosz title: Logging Using Elasticsearch and Kibana +redirect_from: +- "/docs/user-guide/logging/elasticsearch/" +- "/docs/user-guide/logging/elasticsearch.html" --- On the Google Compute Engine (GCE) platform, the default logging support targets diff --git a/docs/tasks/debug-application-cluster/logging-stackdriver.md b/docs/tasks/debug-application-cluster/logging-stackdriver.md index 5faab6b84f..c2ca8f22e3 100644 --- a/docs/tasks/debug-application-cluster/logging-stackdriver.md +++ b/docs/tasks/debug-application-cluster/logging-stackdriver.md @@ -3,6 +3,9 @@ assignees: - crassirostris - piosz title: Logging Using Stackdriver +redirect_from: +- "/docs/user-guide/logging/stackdriver/" +- "/docs/user-guide/logging/stackdriver.html" --- Before reading this page, it's highly recommended to familiarize yourself diff --git a/docs/tasks/kubectl/get-shell-running-container.md b/docs/tasks/kubectl/get-shell-running-container.md index b135d6daa3..69065ab206 100644 --- a/docs/tasks/kubectl/get-shell-running-container.md +++ b/docs/tasks/kubectl/get-shell-running-container.md @@ -3,6 +3,9 @@ assignees: - caesarxuchao - mikedanese title: Getting a Shell to a Running Container +redirect_from: +- "/docs/user-guide/getting-into-containers/" +- "/docs/user-guide/getting-into-containers.html" --- {% capture overview %} diff --git a/docs/tasks/manage-gpus/scheduling-gpus.md b/docs/tasks/manage-gpus/scheduling-gpus.md index 38fd6d2bcd..aeb92a3e2b 100644 --- a/docs/tasks/manage-gpus/scheduling-gpus.md +++ b/docs/tasks/manage-gpus/scheduling-gpus.md @@ -2,6 +2,9 @@ assignees: - vishh title: Scheduling GPUs +redirect_from: +- "/docs/user-guide/gpus/" +- "/docs/user-guide/gpus.html" --- {% capture overview %} diff --git a/docs/user-guide/connecting-to-applications-port-forward.md b/docs/user-guide/connecting-to-applications-port-forward.md deleted file mode 100644 index afa3559eba..0000000000 --- a/docs/user-guide/connecting-to-applications-port-forward.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- caesarxuchao -- mikedanese -title: Connect with Port Forwarding ---- - -{% include user-guide-content-moved.md %} - -[Using Port Forwarding to Access Applications in a Cluster](/docs/tasks/access-application-cluster/port-forward-access-application-cluster/) diff --git a/docs/user-guide/connecting-to-applications-proxy.md b/docs/user-guide/connecting-to-applications-proxy.md deleted file mode 100644 index a95c2b06a2..0000000000 --- a/docs/user-guide/connecting-to-applications-proxy.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- caesarxuchao -- lavalamp -title: Connect with Proxies ---- - -{% include user-guide-content-moved.md %} - -[Using an HTTP Proxy to Access the Kubernetes API](/docs/tasks/access-kubernetes-api/http-proxy-access-api/) diff --git a/docs/user-guide/getting-into-containers.md b/docs/user-guide/getting-into-containers.md deleted file mode 100644 index ff89f111f6..0000000000 --- a/docs/user-guide/getting-into-containers.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- caesarxuchao -- mikedanese -title: Running Commands in a Container with kubectl exec ---- - -{% include user-guide-content-moved.md %} - -[Getting a Shell to a Running Container](/docs/tasks/kubectl/get-shell-running-container/) diff --git a/docs/user-guide/gpus.md b/docs/user-guide/gpus.md deleted file mode 100644 index 4a1cc9f2d2..0000000000 --- a/docs/user-guide/gpus.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -assignees: -- vishh -title: GPU Support ---- - -{% include user-guide-content-moved.md %} - -[Scheduling GPUs](/docs/tasks/manage-gpus/scheduling-gpus/) diff --git a/docs/user-guide/logging/elasticsearch.md b/docs/user-guide/logging/elasticsearch.md deleted file mode 100644 index e55de7f30f..0000000000 --- a/docs/user-guide/logging/elasticsearch.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- crassirostris -- piosz -title: Logging with Elasticsearch and Kibana ---- - -{% include user-guide-content-moved.md %} - -[Logging Using ElasticSearch and Kibana](/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana/) diff --git a/docs/user-guide/logging/overview.md b/docs/user-guide/logging/overview.md deleted file mode 100644 index e5d2e24ae4..0000000000 --- a/docs/user-guide/logging/overview.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- crassirostris -- piosz -title: Logging Overview ---- - -{% include user-guide-content-moved.md %} - -[Logging and Monitoring Cluster Activity](/docs/concepts/clusters/logging/) diff --git a/docs/user-guide/logging/stackdriver.md b/docs/user-guide/logging/stackdriver.md deleted file mode 100644 index 5664357ee5..0000000000 --- a/docs/user-guide/logging/stackdriver.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- crassirostris -- piosz -title: Logging with Stackdriver Logging ---- - -{% include user-guide-content-moved.md %} - -[Logging Using Stackdriver](/docs/tasks/debug-application-cluster/logging-stackdriver/) diff --git a/docs/user-guide/monitoring.md b/docs/user-guide/monitoring.md deleted file mode 100644 index e8b9ba7496..0000000000 --- a/docs/user-guide/monitoring.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -assignees: -- mikedanese -title: Resource Usage Monitoring ---- - -{% include user-guide-content-moved.md %} - -[Resource Usage Monitoring](/docs/concepts/cluster-administration/resource-usage-monitoring/) diff --git a/docs/user-guide/petset/bootstrapping/index.md b/docs/user-guide/petset/bootstrapping/index.md deleted file mode 100644 index 1988cba12a..0000000000 --- a/docs/user-guide/petset/bootstrapping/index.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -assignees: -- bprashanth -- enisoc -- erictune -- foxish -- janetkuo -- kow3ns -- smarterclayton -title: Bootstrapping Pet Sets ---- - -{% include user-guide-content-moved.md %} - -[PetSets](/docs/concepts/abstractions/controllers/petsets/) - - - diff --git a/docs/user-guide/projected-volume/index.md b/docs/user-guide/projected-volume/index.md deleted file mode 100644 index 5787ab1469..0000000000 --- a/docs/user-guide/projected-volume/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -assignees: -- jpeeler -- pmorie -title: Using Projected volumes ---- - -{% include user-guide-content-moved.md %} - -[Using Projected Volumes](/docs/tasks/configure-pod-container/projected-volume/)