From 46e745a81a4536f4c0aaecd21dff61c3311d9660 Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Sat, 27 May 2017 14:38:24 -0700 Subject: [PATCH] Prototype of custom description meta tags. (#3928) * Prototype of custom description meta tags. * Put desc on one line. --- _includes/head.html | 7 +++++++ .../configure-pod-container/assign-cpu-ram-container.md | 1 + 2 files changed, 8 insertions(+) diff --git a/_includes/head.html b/_includes/head.html index 25b363308d..37b7bfaab4 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -8,6 +8,13 @@ {% if page.class == "gridPage" %}{% endif %} + + {% if page.description %} + + {% else %} + + {% endif %} + diff --git a/docs/tasks/configure-pod-container/assign-cpu-ram-container.md b/docs/tasks/configure-pod-container/assign-cpu-ram-container.md index b036ef9c9e..ae585e7085 100644 --- a/docs/tasks/configure-pod-container/assign-cpu-ram-container.md +++ b/docs/tasks/configure-pod-container/assign-cpu-ram-container.md @@ -1,5 +1,6 @@ --- title: Assigning CPU and RAM Resources to a Container +description: When you create a Pod, you can request CPU and RAM resources for the containers that run in the Pod. You can also set limits for CPU and RAM use. --- {% capture overview %}