mirror of https://github.com/kedacore/charts.git
Merge a7fd8484f2 into a25ca18364
This commit is contained in:
commit
c56dd554df
|
|
@ -93,6 +93,7 @@ their default values.
|
|||
| `http.minTlsVersion` | string | `"TLS12"` | The minimum TLS version to use for all scalers that use raw HTTP clients (some scalers use SDKs to access target services. These have built-in HTTP clients, and this value does not necessarily apply to them) |
|
||||
| `http.timeout` | int | `3000` | The default HTTP timeout to use for all scalers that use raw HTTP clients (some scalers use SDKs to access target services. These have built-in HTTP clients, and the timeout does not necessarily apply to them) |
|
||||
| `image.pullPolicy` | string | `"Always"` | Image pullPolicy for all KEDA components |
|
||||
| `grpc.minTlsVersion` | string | `"TLS13"` | The minimum TLS version to use for all GRPC clients/servers |
|
||||
| `imagePullSecrets` | list | `[]` | Name of secret to use to pull images to use to pull Docker images |
|
||||
| `networkPolicy.cilium` | object | `{"operator":{"extraEgressRules":[]}}` | Allow use of extra egress rules for cilium network policies |
|
||||
| `networkPolicy.enabled` | bool | `false` | Enable network policies |
|
||||
|
|
|
|||
|
|
@ -158,6 +158,8 @@ spec:
|
|||
value: {{ .Values.http.timeout | quote }}
|
||||
- name: KEDA_HTTP_MIN_TLS_VERSION
|
||||
value: {{ .Values.http.minTlsVersion }}
|
||||
- name: KEDA_GRPC_MIN_TLS_VERSION
|
||||
value: {{ .Values.grpc.minTlsVersion }}
|
||||
{{- if ( not .Values.http.keepAlive.enabled ) }}
|
||||
- name: KEDA_HTTP_DISABLE_KEEP_ALIVE
|
||||
value: "true"
|
||||
|
|
|
|||
|
|
@ -106,6 +106,8 @@ spec:
|
|||
value: {{ .Values.http.timeout | quote }}
|
||||
- name: KEDA_HTTP_MIN_TLS_VERSION
|
||||
value: {{ .Values.http.minTlsVersion }}
|
||||
- name: KEDA_GRPC_MIN_TLS_VERSION
|
||||
value: {{ .Values.grpc.minTlsVersion }}
|
||||
{{- if ( not .Values.http.keepAlive.enabled ) }}
|
||||
- name: KEDA_HTTP_DISABLE_KEEP_ALIVE
|
||||
value: "true"
|
||||
|
|
|
|||
|
|
@ -567,6 +567,10 @@ http:
|
|||
# -- The minimum TLS version to use for all scalers that use raw HTTP clients (some scalers use SDKs to access target services. These have built-in HTTP clients, and this value does not necessarily apply to them)
|
||||
minTlsVersion: TLS12
|
||||
|
||||
grpc:
|
||||
# -- The minimum TLS version to use for GRPC clients / servers
|
||||
minTlsVersion: TLS13
|
||||
|
||||
## This setting lets you enable profiling for all of the components of KEDA and in the specific port you choose
|
||||
## This can be useful when trying to investigate errors like memory leaks or CPU or even look at goroutines to understand better
|
||||
## This setting is disabled by default
|
||||
|
|
|
|||
Loading…
Reference in New Issue