Skip to content

Commit

Permalink
feat(controller): document added chart values
Browse files Browse the repository at this point in the history
The controller values.yaml should mention all of the settings that can
affect the controller in values.yaml too.
  • Loading branch information
Kingdon Barrett committed Nov 23, 2020
1 parent 11c9e66 commit a16db5e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions charts/controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,21 @@ global:
host_port: 5555
# Prefix for the imagepull secret created when using private registry
secret_prefix: "private-registry"
# Clusters with large nodes (24 CPU+) may need to lower or tune the number of GUNICORN_WORKERS.
#
# Default value is based on your number of CPUs:
# - (os.cpu_count() or 4) * 4 + 1
# This setting probably should not be higher than max_connections which defaults to 100
# gunicorn_workers: 13
# If there are enough gunicorn workers to use up max_connections, you may also want to reduce CONN_MAX_AGE
# so health checks time out their connection faster and don't use all available connections
#
# Valid values are a number of seconds, or 0 to disable persistent connections.
# Setting the value to "None" will ensure that connections are never timed out.
# - 0
# - 600
# - "None"
# conn_max_age: 600
# Experimental feature to toggle using kubernetes ingress instead of the Deis router.
#
# Valid values are:
Expand Down

0 comments on commit a16db5e

Please sign in to comment.