mirror of
https://github.com/puppetlabs/vmpooler-deployment.git
synced 2026-01-26 03:28:41 -05:00
Merge pull request #108 from puppetlabs/add_redis_connect_options
(RE-15638) Make redis connection options configurable
This commit is contained in:
commit
11617df909
2 changed files with 7 additions and 3 deletions
|
|
@ -110,11 +110,11 @@ spec:
|
|||
- name: REDIS_SERVER
|
||||
value: 'redis-master'
|
||||
- name: REDIS_CONNECTION_POOL_SIZE
|
||||
value: "200"
|
||||
value: '{{ .Values.redis_connection_pool_size }}'
|
||||
- name: REDIS_CONNECTION_POOL_TIMEOUT
|
||||
value: "40"
|
||||
value: '{{ .Values.redis_connection_pool_timeout }}'
|
||||
- name: REDIS_RECONNECT_ATTEMPTS
|
||||
value: "40"
|
||||
value: '{{ .Values.redis_reconnect_attempts }}'
|
||||
- name: ONDEMAND_REQUEST_TTL
|
||||
value: '{{ .Values.ondemand_request_ttl }}'
|
||||
- name: ONDEMAND_CLONE_LIMIT
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@ vm_lifetime: '2'
|
|||
vm_lifetime_auth: '12'
|
||||
timeout: '15'
|
||||
|
||||
redis_connection_pool_size: '200'
|
||||
redis_connection_pool_timeout: '40'
|
||||
redis_reconnect_attempts: '40'
|
||||
|
||||
:dns_configs:
|
||||
:example:
|
||||
dns_class: dynamic-dns
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue