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
3 changes: 2 additions & 1 deletion deployments/charts/backend-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ This Helm chart deploys the OSMO Backend-Operator for managing compute backend r
| `services.backendListener.initContainers` | Init containers for backend listener | `[]` |
| `services.backendListener.serviceAccount` | Service account name | `backend-listener` |
| `services.backendListener.max_unacked_messages` | Maximum unacked messages | `100` |
| `services.backendListener.podCacheTtl` | Pod cache TTL in seconds | `15` |
| `services.backendListener.podCacheTtl` | Pod cache TTL in minutes | `15` |
| `services.backendListener.nodeCacheTtl` | Node cache TTL in minutes | `15` |
| `services.backendListener.extraArgs` | Additional arguments | `[]` |
| `services.backendListener.extraEnvs` | Additional environment variables | `[]` |
| `services.backendListener.extraPodAnnotations` | Additional pod annotations | `{}` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ spec:
- '{{ .Values.services.backendListener.max_unacked_messages }}'
- --pod_event_cache_ttl
- {{ .Values.services.backendListener.podCacheTtl | quote }}
- --node_event_cache_ttl
- {{ .Values.services.backendListener.nodeCacheTtl | quote }}
- --include_namespace_usage
- {{ .Values.global.includeNamespaceUsage | quote }}
- --api_qps
Expand Down
4 changes: 4 additions & 0 deletions deployments/charts/backend-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,10 @@ services:
##
podCacheTtl: 15

## Time-to-live for node cache entries (in seconds)
##
nodeCacheTtl: 15

## Additional command line arguments to pass to the backend listener
##
extraArgs: []
Expand Down
Loading