Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions keda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ their default values.
| `service.minTlsVersion` | string | `"TLS13"` | The minimum TLS version to use when KEDA components listen via TLS-enabled services (gRPC & Webhook). |
| `service.tlsCipherList` | string | `""` | The list of cipher suites to use when KEDA components listen via TLS-enabled services. When left empty or unset, the TLS implementation will provide a default list of cipher suites which are believed to be secure. |
| `tolerations` | list | `[]` | Tolerations for pod scheduling ([docs](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/)) |
| `watchLabelSelector` | string | `""` | Restricts the operator to reconcile only ScaledObjects, ScaledJobs, TriggerAuthentications and ClusterTriggerAuthentications matching the given Kubernetes label selector. Default (empty) means no label-based filtering. Mirrors `watchNamespace`, but filters by label instead of by namespace. Examples: "environment=production", "tier in (gold,silver)", "!canary" |
| `watchNamespace` | string | `""` | Defines Kubernetes namespaces to watch to scale their workloads. Default watches all namespaces |

### Operator
Expand Down
2 changes: 2 additions & 0 deletions keda/templates/manager/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ spec:
env:
- name: WATCH_NAMESPACE
value: {{ .Values.watchNamespace | quote }}
- name: WATCH_LABEL_SELECTOR
value: {{ .Values.watchLabelSelector | quote }}
- name: POD_NAME
valueFrom:
fieldRef:
Expand Down
6 changes: 6 additions & 0 deletions keda/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ crds:
# -- Defines Kubernetes namespaces to watch to scale their workloads. Default watches all namespaces
watchNamespace: ""

# -- Restricts the operator to reconcile only ScaledObjects, ScaledJobs, TriggerAuthentications and
# ClusterTriggerAuthentications matching the given Kubernetes label selector. Default (empty) means
# no label-based filtering. Mirrors `watchNamespace`, but filters by label instead of by namespace.
# Examples: "environment=production", "tier in (gold,silver)", "!canary"
watchLabelSelector: ""

# -- Name of secret to use to pull images to use to pull Docker images
imagePullSecrets: []

Expand Down