diff --git a/assets/sass/_base.sass b/assets/sass/_base.sass
index 8dd57375d064a..f162ef5266e46 100644
--- a/assets/sass/_base.sass
+++ b/assets/sass/_base.sass
@@ -800,8 +800,6 @@ dd
&:after
transform: rotate(-45deg)
-
-
#docsContent
position: relative
float: right
@@ -895,7 +893,6 @@ dd
overflow-x: auto
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code
- font-family: inherit
font-size: inherit
background-color: transparent
@@ -999,10 +996,6 @@ dd
img
max-width: 100%
- a
- //font-weight: 700
- text-decoration: underline
-
#TableOfContents > ul > li { list-style: none; }
#TableOfContents
ul, li
diff --git a/content/en/blog/_posts/2015-07-00-How-Did-Quake-Demo-From-Dockercon-Work.md b/content/en/blog/_posts/2015-07-00-How-Did-Quake-Demo-From-Dockercon-Work.md
index b5f5e8da77daf..63b3c1e52bbc2 100644
--- a/content/en/blog/_posts/2015-07-00-How-Did-Quake-Demo-From-Dockercon-Work.md
+++ b/content/en/blog/_posts/2015-07-00-How-Did-Quake-Demo-From-Dockercon-Work.md
@@ -121,7 +121,7 @@ CONTAINER ID IMAGE COMMAND CREATED STATUS
docker\_cr.sh
```
-Since the command line arguments to CRIU were long, a helper script called docker\_cr.sh was provided in the CRIU source tree to simplify the proces. So, for the above container, one would simply C/R the container as follows (for details see [http://criu.org/Docker](http://criu.org/Docker)):
+Since the command line arguments to CRIU were long, a helper script called docker\_cr.sh was provided in the CRIU source tree to simplify the process. So, for the above container, one would simply C/R the container as follows (for details see [http://criu.org/Docker](http://criu.org/Docker)):
```
$ sudo docker\_cr.sh -c 4397
diff --git a/content/en/docs/concepts/overview/what-is-kubernetes.md b/content/en/docs/concepts/overview/what-is-kubernetes.md
index fcc49f20817fb..f086ab21f51c9 100644
--- a/content/en/docs/concepts/overview/what-is-kubernetes.md
+++ b/content/en/docs/concepts/overview/what-is-kubernetes.md
@@ -179,7 +179,7 @@ Summary of container benefits:
Runs on Ubuntu, RHEL, CoreOS, on-prem, Google Kubernetes Engine, and anywhere else.
* **Application-centric management**:
Raises the level of abstraction from running an OS on virtual
- hardware to run an application on an OS using logical resources.
+ hardware to running an application on an OS using logical resources.
* **Loosely coupled, distributed, elastic, liberated [micro-services](https://martinfowler.com/articles/microservices.html)**:
Applications are broken into smaller, independent pieces and can
be deployed and managed dynamically -- not a fat monolithic stack
diff --git a/content/en/docs/concepts/storage/storage-limits.md b/content/en/docs/concepts/storage/storage-limits.md
index 7d262377445fc..d291c6eca2b68 100644
--- a/content/en/docs/concepts/storage/storage-limits.md
+++ b/content/en/docs/concepts/storage/storage-limits.md
@@ -54,6 +54,7 @@ is an alpha feature that supports these services:
- Amazon EBS
- Google Persistent Disk
+- Azure Disk
To enable dynamic volume limits, set the `AttachVolumeLimit`
[feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
@@ -73,4 +74,6 @@ volumes to be attached to a node. For other instance types on
Amazon Elastic Compute Cloud (EC2),
Kubernetes allows 39 volumes to be attached to a node.
+* On Azure, up to 64 disks can be attached to a node, depending on the node type. For more details, refer to [Sizes for virtual machines in Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/sizes).
+
{{% /capture %}}
diff --git a/content/en/docs/contribute/_index.md b/content/en/docs/contribute/_index.md
index 7171eac6fdf08..e97e78c2c9d29 100644
--- a/content/en/docs/contribute/_index.md
+++ b/content/en/docs/contribute/_index.md
@@ -20,7 +20,7 @@ Looking for the [style guide](/docs/contribute/style/style-guide/)?
## Types of contributor
-- A _member_ of the Kubernetes organization has [signed the CLA](/contribute/start#sign-the-cla)
+- A _member_ of the Kubernetes organization has [signed the CLA](/docs/contribute/start#sign-the-cla)
and contributed some time and effort to the project. See
[Community membership](https://github.com/kubernetes/community/blob/master/community-membership.md)
for specific criteria for membership.
diff --git a/content/en/docs/reference/access-authn-authz/authentication.md b/content/en/docs/reference/access-authn-authz/authentication.md
index 83e9caeb565b8..0ef41c918f40c 100644
--- a/content/en/docs/reference/access-authn-authz/authentication.md
+++ b/content/en/docs/reference/access-authn-authz/authentication.md
@@ -507,7 +507,7 @@ It is designed for use in combination with an authenticating proxy, which sets t
* `--requestheader-group-headers` 1.6+. Optional, case-insensitive. "X-Remote-Group" is suggested. Header names to check, in order, for the user's groups. All values in all specified headers are used as group names.
* `--requestheader-extra-headers-prefix` 1.6+. Optional, case-insensitive. "X-Remote-Extra-" is suggested. Header prefixes to look for to determine extra information about the user (typically used by the configured authorization plugin). Any headers beginning with any of the specified prefixes have the prefix removed. The remainder of the header name is lowercased and [percent-decoded](https://tools.ietf.org/html/rfc3986#section-2.1) and becomes the extra key, and the header value is the extra value.
{{< note >}}
-**Note:** Prior to 1.11.2, the extra key could only contain characters which were [legal in HTTP header labels](https://tools.ietf.org/html/rfc7230#section-3.2.6).
+**Note:** Prior to 1.11.3 (and 1.10.7, 1.9.11), the extra key could only contain characters which were [legal in HTTP header labels](https://tools.ietf.org/html/rfc7230#section-3.2.6).
{{< /note >}}
For example, with this configuration:
@@ -597,7 +597,7 @@ The following HTTP headers can be used to performing an impersonation request:
* `Impersonate-Extra-( extra name )`: A dynamic header used to associate extra fields with the user. Optional. Requires "Impersonate-User". In order to be preserved consistently, `( extra name )` should be lower-case, and any characters which aren't [legal in HTTP header labels](https://tools.ietf.org/html/rfc7230#section-3.2.6) MUST be utf8 and [percent-encoded](https://tools.ietf.org/html/rfc3986#section-2.1).
{{< note >}}
-**Note:** Prior to 1.11.2, `( extra name )` could only contain characters which were [legal in HTTP header labels](https://tools.ietf.org/html/rfc7230#section-3.2.6).
+**Note:** Prior to 1.11.3 (and 1.10.7, 1.9.11), `( extra name )` could only contain characters which were [legal in HTTP header labels](https://tools.ietf.org/html/rfc7230#section-3.2.6).
{{< /note >}}
An example set of headers:
diff --git a/content/en/docs/reference/command-line-tools-reference/feature-gates.md b/content/en/docs/reference/command-line-tools-reference/feature-gates.md
index 7cd1cbdc5766f..24ee19df4c4b7 100644
--- a/content/en/docs/reference/command-line-tools-reference/feature-gates.md
+++ b/content/en/docs/reference/command-line-tools-reference/feature-gates.md
@@ -225,7 +225,7 @@ Each feature gate is designed for enabling/disabling a specific feature:
For more details, please see [Pod readiness gate](/docs/concepts/workloads/pods/pod-lifecycle/#pod-readiness-gate).
- `PVCProtection`: Enable the prevention of a PersistentVolumeClaim (PVC) from
being deleted when it is still used by any Pod.
- More details can be found [here](/docs/tasks/administer-cluster/pvc-protection/).
+ More details can be found [here](/docs/tasks/administer-cluster/storage-object-in-use-protection/).
- `ReadOnlyAPIDataVolumes`: Set Secret, ConfigMap, DownwardAPI and projected volumes to be mounted in read-only mode.
This gate exists only for backward compatibility. It will be removed in 1.11 release.
- `ResourceLimitsPriorityFunction`: Enable a scheduler priority function that
diff --git a/content/en/docs/reference/command-line-tools-reference/kubelet.md b/content/en/docs/reference/command-line-tools-reference/kubelet.md
index e812256b7177c..8102198ef8143 100644
--- a/content/en/docs/reference/command-line-tools-reference/kubelet.md
+++ b/content/en/docs/reference/command-line-tools-reference/kubelet.md
@@ -405,7 +405,7 @@ kubelet [flags]
--enforce-node-allocatable stringSlice |
- | A comma separated list of levels of node allocatable enforcement to be enforced by kubelet. Acceptible options are 'pods', 'system-reserved' & 'kube-reserved'. If the latter two options are specified, '--system-reserved-cgroup' & '--kube-reserved-cgroup' must also be set respectively. See https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/ for more details. (default [pods]) |
+ | A comma separated list of levels of node allocatable enforcement to be enforced by kubelet. Acceptable options are 'pods', 'system-reserved' & 'kube-reserved'. If the latter two options are specified, '--system-reserved-cgroup' & '--kube-reserved-cgroup' must also be set respectively. See https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/ for more details. (default [pods]) |
@@ -510,7 +510,7 @@ kubelet [flags]
--experimental-check-node-capabilities-before-mount |
- | [Experimental] if set true, the kubelet will check the underlying node for required componenets (binaries, etc.) before performing the mount |
+ | [Experimental] if set true, the kubelet will check the underlying node for required components (binaries, etc.) before performing the mount |
diff --git a/content/en/docs/reference/setup-tools/kubefed/kubefed-init.md b/content/en/docs/reference/setup-tools/kubefed/kubefed-init.md
index 08a0c7621c09d..2d5e86d8b64ce 100644
--- a/content/en/docs/reference/setup-tools/kubefed/kubefed-init.md
+++ b/content/en/docs/reference/setup-tools/kubefed/kubefed-init.md
@@ -100,6 +100,6 @@ kubefed init FEDERATION_NAME --host-cluster-context=HOST_CONTEXT [flags]
```
### SEE ALSO
-* [kubefed](kubefed.md) - kubefed controls a Kubernetes Cluster Federation
+* [kubefed](/docs/reference/setup-tools/kubefed/kubefed/) - kubefed controls a Kubernetes Cluster Federation
###### Auto generated by spf13/cobra on 25-Mar-2018
diff --git a/content/en/docs/reference/setup-tools/kubefed/kubefed-join.md b/content/en/docs/reference/setup-tools/kubefed/kubefed-join.md
index 9c538c664ef74..25ee8a275d7c5 100644
--- a/content/en/docs/reference/setup-tools/kubefed/kubefed-join.md
+++ b/content/en/docs/reference/setup-tools/kubefed/kubefed-join.md
@@ -94,6 +94,6 @@ kubefed join CLUSTER_NAME --host-cluster-context=HOST_CONTEXT [flags]
```
### SEE ALSO
-* [kubefed](kubefed.md) - kubefed controls a Kubernetes Cluster Federation
+* [kubefed](/docs/reference/setup-tools/kubefed/kubefed/) - kubefed controls a Kubernetes Cluster Federation
###### Auto generated by spf13/cobra on 25-Mar-2018
diff --git a/content/en/docs/reference/setup-tools/kubefed/kubefed-options.md b/content/en/docs/reference/setup-tools/kubefed/kubefed-options.md
index 49420bf8788e5..79b94280135e6 100644
--- a/content/en/docs/reference/setup-tools/kubefed/kubefed-options.md
+++ b/content/en/docs/reference/setup-tools/kubefed/kubefed-options.md
@@ -72,6 +72,6 @@ kubefed options [flags]
```
### SEE ALSO
-* [kubefed](kubefed.md) - kubefed controls a Kubernetes Cluster Federation
+* [kubefed](/docs/reference/setup-tools/kubefed/kubefed/) - kubefed controls a Kubernetes Cluster Federation
###### Auto generated by spf13/cobra on 25-Mar-2018
diff --git a/content/en/docs/reference/setup-tools/kubefed/kubefed-unjoin.md b/content/en/docs/reference/setup-tools/kubefed/kubefed-unjoin.md
index 8e42e15d762c1..223919683271b 100644
--- a/content/en/docs/reference/setup-tools/kubefed/kubefed-unjoin.md
+++ b/content/en/docs/reference/setup-tools/kubefed/kubefed-unjoin.md
@@ -81,6 +81,6 @@ kubefed unjoin CLUSTER_NAME --host-cluster-context=HOST_CONTEXT [flags]
```
### SEE ALSO
-* [kubefed](kubefed.md) - kubefed controls a Kubernetes Cluster Federation
+* [kubefed](/docs/reference/setup-tools/kubefed/kubefed/) - kubefed controls a Kubernetes Cluster Federation
###### Auto generated by spf13/cobra on 25-Mar-2018
diff --git a/content/en/docs/reference/setup-tools/kubefed/kubefed-version.md b/content/en/docs/reference/setup-tools/kubefed/kubefed-version.md
index 8fc70005e1bd6..d605404fc03ac 100644
--- a/content/en/docs/reference/setup-tools/kubefed/kubefed-version.md
+++ b/content/en/docs/reference/setup-tools/kubefed/kubefed-version.md
@@ -75,6 +75,6 @@ kubefed version [flags]
```
### SEE ALSO
-* [kubefed](kubefed.md) - kubefed controls a Kubernetes Cluster Federation
+* [kubefed](/docs/reference/setup-tools/kubefed/kubefed/) - kubefed controls a Kubernetes Cluster Federation
###### Auto generated by spf13/cobra on 25-Mar-2018
diff --git a/content/en/docs/reference/setup-tools/kubefed/kubefed.md b/content/en/docs/reference/setup-tools/kubefed/kubefed.md
index 902f1ed8926bb..ce72a322aea8a 100644
--- a/content/en/docs/reference/setup-tools/kubefed/kubefed.md
+++ b/content/en/docs/reference/setup-tools/kubefed/kubefed.md
@@ -62,10 +62,10 @@ kubefed [flags]
```
### SEE ALSO
-* [kubefed init](kubefed_init.md) - Initialize a federation control plane
-* [kubefed join](kubefed_join.md) - Join a cluster to a federation
-* [kubefed options](kubefed_options.md) - Print the list of flags inherited by all commands
-* [kubefed unjoin](kubefed_unjoin.md) - Unjoin a cluster from a federation
-* [kubefed version](kubefed_version.md) - Print the client and server version information
+* [kubefed init](/docs/reference/setup-tools/kubefed/kubefed-init/) - Initialize a federation control plane
+* [kubefed join](/docs/reference/setup-tools/kubefed/kubefed-join/) - Join a cluster to a federation
+* [kubefed options](/docs/reference/setup-tools/kubefed/kubefed-options/) - Print the list of flags inherited by all commands
+* [kubefed unjoin](/docs/reference/setup-tools/kubefed/kubefed-unjoin/) - Unjoin a cluster from a federation
+* [kubefed version](/docs/reference/setup-tools/kubefed/kubefed-version/) - Print the client and server version information
###### Auto generated by spf13/cobra on 25-Mar-2018
diff --git a/content/en/docs/setup/independent/setup-ha-etcd-with-kubeadm.md b/content/en/docs/setup/independent/setup-ha-etcd-with-kubeadm.md
index 286a6f1217571..576e497da7589 100644
--- a/content/en/docs/setup/independent/setup-ha-etcd-with-kubeadm.md
+++ b/content/en/docs/setup/independent/setup-ha-etcd-with-kubeadm.md
@@ -1,7 +1,7 @@
---
reviewers:
- sig-cluster-lifecycle
-title: Set up a Highly Availabile etcd Cluster With kubeadm
+title: Set up a High Availability etcd cluster with kubeadm
content_template: templates/task
weight: 60
---
@@ -9,10 +9,10 @@ weight: 60
{{% capture overview %}}
Kubeadm defaults to running a single member etcd cluster in a static pod managed
-by the kubelet on the control plane node. This is not a highly available setup
+by the kubelet on the control plane node. This is not a high availability setup
as the etcd cluster contains only one member and cannot sustain any members
-becoming unavailable. This task walks through the process of creating a highly
-available etcd cluster of three members that can be used as an external etcd
+becoming unavailable. This task walks through the process of creating a high
+availability etcd cluster of three members that can be used as an external etcd
when using kubeadm to set up a kubernetes cluster.
{{% /capture %}}
@@ -108,7 +108,7 @@ this example.
If you already have a CA then the only action that is copying the CA's `crt` and
`key` file to `/etc/kubernetes/pki/etcd/ca.crt` and
`/etc/kubernetes/pki/etcd/ca.key`. After those files have been copied, please
- skip this step.
+ proceed to "Create certificates for each member".
If you do not already have a CA then run this command on `$HOST0` (where you
generated the configuration files for kubeadm).
diff --git a/content/en/docs/setup/scratch.md b/content/en/docs/setup/scratch.md
index ad87cfcb8e35d..579642ff2876e 100644
--- a/content/en/docs/setup/scratch.md
+++ b/content/en/docs/setup/scratch.md
@@ -194,18 +194,13 @@ You have several choices for Kubernetes images:
- You can verify if the image is loaded successfully with the right repository and tag using
command like `docker images`
-For etcd, you can:
-
-- Use images hosted on Google Container Registry (GCR), such as `k8s.gcr.io/etcd:2.2.1`
-- Use images hosted on [Docker Hub](https://hub.docker.com/search/?q=etcd) or [Quay.io](https://quay.io/repository/coreos/etcd), such as `quay.io/coreos/etcd:v2.2.1`
-- Use etcd binary included in your OS distro.
-- Build your own image
- - You can do: `cd kubernetes/cluster/images/etcd; make`
-
We recommend that you use the etcd version which is provided in the Kubernetes binary distribution. The Kubernetes binaries in the release
were tested extensively with this version of etcd and not with any other version.
The recommended version number can also be found as the value of `TAG` in `kubernetes/cluster/images/etcd/Makefile`.
+For the miniumum recommended version of etcd, please refer to
+[Configuring and Updating etcd](/docs/tasks/administer-cluster/configure-upgrade-etcd/)
+
The remainder of the document assumes that the image identifiers have been chosen and stored in corresponding env vars. Examples (replace with latest tags and appropriate registry):
- `HYPERKUBE_IMAGE=k8s.gcr.io/hyperkube:$TAG`
diff --git a/content/en/docs/tasks/access-kubernetes-api/custom-resources/migrate-third-party-resource.md b/content/en/docs/tasks/access-kubernetes-api/custom-resources/migrate-third-party-resource.md
index b71e81f39d21f..853add8c3943c 100644
--- a/content/en/docs/tasks/access-kubernetes-api/custom-resources/migrate-third-party-resource.md
+++ b/content/en/docs/tasks/access-kubernetes-api/custom-resources/migrate-third-party-resource.md
@@ -52,15 +52,15 @@ you **on a best-effort basis**.
For example, if your ThirdPartyResource looks like this:
- ```yaml
- apiVersion: extensions/v1beta1
- kind: ThirdPartyResource
- metadata:
- name: cron-tab.stable.example.com
- description: "A specification of a Pod to run on a cron style schedule"
- versions:
- - name: v1
- ```
+
+ apiVersion: extensions/v1beta1
+ kind: ThirdPartyResource
+ metadata:
+ name: cron-tab.stable.example.com
+ description: "A specification of a Pod to run on a cron style schedule"
+ versions:
+ - name: v1
+
A matching CustomResourceDefinition could look like this:
diff --git a/content/en/docs/tasks/administer-cluster/configure-upgrade-etcd.md b/content/en/docs/tasks/administer-cluster/configure-upgrade-etcd.md
index fbefd3cfcdad1..f99149c6087f6 100644
--- a/content/en/docs/tasks/administer-cluster/configure-upgrade-etcd.md
+++ b/content/en/docs/tasks/administer-cluster/configure-upgrade-etcd.md
@@ -34,6 +34,8 @@ content_template: templates/task
* Keeping stable etcd clusters is critical to the stability of Kubernetes clusters. Therefore, run etcd clusters on dedicated machines or isolated environments for [guaranteed resource requirements](https://github.com/coreos/etcd/blob/master/Documentation/op-guide/hardware.md#hardware-recommendations).
+* The minimum recommended version of etcd to run in production is `3.2.10+`.
+
## Resource requirements
Operating etcd with limited resources is suitable only for testing purposes. For deploying in production, advanced hardware configuration is required. Before deploying etcd in production, see [resource requirement reference documentation](https://github.com/coreos/etcd/blob/master/Documentation/op-guide/hardware.md#example-hardware-configurations).
@@ -388,6 +390,8 @@ TARGET_VERSION=2.2.1
STORAGE_MEDIA_TYPE=application/json
```
+** Note: this upgrade procedure is for getting from 2.x to 3.x. Version `3.0.17` is not recommended for running in production (see [prerequisites](#prereqisites) for minimum recommended etcd versions.
+
## Notes for etcd Version 2.2.1
### Default configuration
diff --git a/content/en/docs/tasks/administer-cluster/developing-cloud-controller-manager.md b/content/en/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
index 9397e0f4a3fd1..9769340ced78c 100644
--- a/content/en/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
+++ b/content/en/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
@@ -40,6 +40,6 @@ Using existing out-of-tree cloud providers as an example may be helpful. You can
### In Tree
-For in-tree cloud providers, you can run the in-tree cloud controller manager as a [Daemonset](/docs/tasks/administer-cluster/cloud-controller-manager-daemonset-example.yaml) in your cluster. See the [running cloud controller manager docs](/docs/tasks/administer-cluster/running-cloud-controller.md) for more details.
+For in-tree cloud providers, you can run the in-tree cloud controller manager as a [Daemonset](/examples/admin/cloud/ccm-example.yaml) in your cluster. See the [running cloud controller manager docs](/docs/tasks/administer-cluster/running-cloud-controller.md) for more details.
-{{% /capture %}}
\ No newline at end of file
+{{% /capture %}}
diff --git a/content/en/docs/tasks/administer-cluster/kubelet-config-file.md b/content/en/docs/tasks/administer-cluster/kubelet-config-file.md
index 11bb401f25974..f0c63e41fa34f 100644
--- a/content/en/docs/tasks/administer-cluster/kubelet-config-file.md
+++ b/content/en/docs/tasks/administer-cluster/kubelet-config-file.md
@@ -30,7 +30,7 @@ it simplifies node deployment and configuration management.
The subset of the Kubelet's configuration that can be configured via a file
is defined by the `KubeletConfiguration` struct
-[here (v1beta1)](https://github.com/kubernetes/kubernetes/blob/{{< param "docsbranch" >}}/pkg/kubelet/apis/kubeletconfig/v1beta1/types.go).
+[here (v1beta1)](https://github.com/kubernetes/kubernetes/blob/{{< param "docsbranch" >}}/pkg/kubelet/apis/config/types.go).
The configuration file must be a JSON or YAML representation of the parameters
in this struct. Make sure the Kubelet has read permissions on the file.
diff --git a/content/en/docs/tasks/debug-application-cluster/audit.md b/content/en/docs/tasks/debug-application-cluster/audit.md
index 53af07e83828c..b4ec42e7aa149 100644
--- a/content/en/docs/tasks/debug-application-cluster/audit.md
+++ b/content/en/docs/tasks/debug-application-cluster/audit.md
@@ -191,6 +191,17 @@ and in the logs to monitor the state of the auditing subsystem.
- `apiserver_audit_error_total` metric contains the total number of events dropped due to an error
during exporting.
+### Truncate
+
+Both log and webhook backends support batching. As an example, the following is the list of flags
+available for the log backend:
+
+ - `audit-log-truncate-enabled` whether event and batch truncating is enabled.
+ - `audit-log-truncate-max-batch-size` maximum size in bytes of the batch sent to the underlying backend.
+ - `audit-log-truncate-max-event-size` maximum size in bytes of the audit event sent to the underlying backend.
+
+By default truncate is disabled in both `webhook` and `log`, a cluster administrator should set `audit-log-truncate-enabled` or `audit-webhook-truncate-enabled` to enable the feature.
+
## Multi-cluster setup
If you're extending the Kubernetes API with the [aggregation layer][kube-aggregator], you can also
diff --git a/content/en/examples/application/cassandra/cassandra-statefulset.yaml b/content/en/examples/application/cassandra/cassandra-statefulset.yaml
index ee8a604caf21b..a7bdbedc9c5aa 100644
--- a/content/en/examples/application/cassandra/cassandra-statefulset.yaml
+++ b/content/en/examples/application/cassandra/cassandra-statefulset.yaml
@@ -34,8 +34,8 @@ spec:
cpu: "500m"
memory: 1Gi
requests:
- cpu: "500m"
- memory: 1Gi
+ cpu: "500m"
+ memory: 1Gi
securityContext:
capabilities:
add:
diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html
index 9e7e509999da6..bd4456aec1b19 100644
--- a/layouts/docs/baseof.html
+++ b/layouts/docs/baseof.html
@@ -48,22 +48,5 @@
{{ partialCached "footer.html" . }}
{{ partialCached "footer-scripts.html" . }}
-