diff --git a/website/source/docs/platform/k8s/helm.html.md b/website/source/docs/platform/k8s/helm.html.md
index 0bd509aac3..17e4cdd005 100644
--- a/website/source/docs/platform/k8s/helm.html.md
+++ b/website/source/docs/platform/k8s/helm.html.md
@@ -142,6 +142,20 @@ and consider if they're appropriate for your deployment.
CA and set of certificates. Additional Connect settings can be configured
by setting the `server.extraConfig` value.
+ - `resources` (`object: {}`) -
+ The resource requests (CPU, memory, etc.) for each of the server agents.
+ This should be an object mapping directly to a Kubernetes
+ [ResourceRequirements](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#resourcerequirements-v1-core) object. If this isn't specified, then the pods
+ won't request any specific amount of resources. **Setting this is highly
+ recommended.**
+
+ - `updatePartition` (`integer: 0`) -
+ This value is used to carefully control a rolling update of Consul server
+ agents. This value specifies the
+ [partition](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#partitions)
+ for performing a rolling update. Please read the linked Kubernetes
+ documentation for more information.
+
- `disruptionBudget` -
This configures the
[PodDisruptionBudget](https://kubernetes.io/docs/tasks/run-application/configure-pdb/)
@@ -180,24 +194,6 @@ and consider if they're appropriate for your deployment.
configuration files from this volume with `-config-dir`. This defaults
to false.
- - `resources` (`object: {}`) -
- The resource requests (CPU, memory, etc.) for each of the server agents.
- This should be an object mapping directly to a Kubernetes
- [ResourceRequirements](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#resourcerequirements-v1-core) object. If this isn't specified, then the pods
- won't request any specific amount of resources. **Setting this is highly
- recommended.**
-
- - `storage` (`string: "10Gi"`) -
- The amount of storage to request for the persistant volume backing the
- Consul server data.
-
- - `updatePartition` (`integer: 0`) -
- This value is used to carefully control a rolling update of Consul server
- agents. This value specifies the
- [partition](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#partitions)
- for performing a rolling update. Please read the linked Kubernetes
- documentation for more information.
-
* `client` - Values that configure
running a Consul client agent on Kubernetes nodes.