Merge pull request #5948 from hashicorp/lkysow-patch-1
Update kubernetes-reference.html.md
This commit is contained in:
commit
c28ace2db1
|
@ -33,19 +33,22 @@ The CPU and memory recommendations can be used when you select the resources
|
|||
limits for the Consul pods. The disk recommendations can also be used when
|
||||
selecting the resources limits and configuring persistent volumes. You will
|
||||
need to set both `limits` and `requests` in the Helm chart. Below is an example
|
||||
Helm chart for a Consul server in a large environment.
|
||||
snippet of Helm config for a Consul server in a large environment.
|
||||
|
||||
```yaml
|
||||
# values.yaml
|
||||
|
||||
```yaml
|
||||
server
|
||||
resources: |
|
||||
requests:
|
||||
memory: "32Gi"
|
||||
cpu: "4"
|
||||
disk: "50Gi"
|
||||
limits:
|
||||
memory: "32Gi"
|
||||
cpu: "4"
|
||||
disk: "50Gi"
|
||||
cpu: "4"
|
||||
|
||||
storage: 50Gi
|
||||
...
|
||||
```
|
||||
|
||||
You should also set [resource limits for Consul
|
||||
|
|
Loading…
Reference in New Issue