Skip to content

Commit a16db5e

Browse files
author
Kingdon Barrett
committed
feat(controller): document added chart values
The controller values.yaml should mention all of the settings that can affect the controller in values.yaml too.
1 parent 11c9e66 commit a16db5e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

charts/controller/values.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,21 @@ global:
4949
host_port: 5555
5050
# Prefix for the imagepull secret created when using private registry
5151
secret_prefix: "private-registry"
52+
# Clusters with large nodes (24 CPU+) may need to lower or tune the number of GUNICORN_WORKERS.
53+
#
54+
# Default value is based on your number of CPUs:
55+
# - (os.cpu_count() or 4) * 4 + 1
56+
# This setting probably should not be higher than max_connections which defaults to 100
57+
# gunicorn_workers: 13
58+
# If there are enough gunicorn workers to use up max_connections, you may also want to reduce CONN_MAX_AGE
59+
# so health checks time out their connection faster and don't use all available connections
60+
#
61+
# Valid values are a number of seconds, or 0 to disable persistent connections.
62+
# Setting the value to "None" will ensure that connections are never timed out.
63+
# - 0
64+
# - 600
65+
# - "None"
66+
# conn_max_age: 600
5267
# Experimental feature to toggle using kubernetes ingress instead of the Deis router.
5368
#
5469
# Valid values are:

0 commit comments

Comments
 (0)