| reloader.reloader | object | - | Reloader configuration values. |
| reloader.reloader.logFormat | string | "json" | Set the type of log format. Use "json" for structured logging or leave empty "" for plain text. |
| reloader.reloader.logLevel | string | "info" | Set the verbosity of the logs. Options: trace, debug, info, warning, error, fatal, panic. |
| reloader.reloader.reloadOnCreate | bool | true | Enable rolling upgrades for workloads when a referenced ConfigMap or Secret is newly created in the namespace. Highly useful for dynamically injected configurations (e.g., Vault, External Secrets). |
| reloader.reloader.reloadOnDelete | bool | true | Enable rolling upgrades for workloads when a referenced ConfigMap or Secret is deleted. This ensures pods don't continue running in a stale state with in-memory configurations that no longer exist in the cluster. |
| reloader.reloader.resources | object | - | Resource requests and limits for the container. |
| reloader.reloader.resources.limits | object | - | The maximum amount of resources the container is allowed to consume. |
| reloader.reloader.resources.limits.cpu | string | "100m" | CPU limit. Throttling occurs if the container exceeds this value. |
| reloader.reloader.resources.limits.memory | string | "512Mi" | Memory limit. If exceeded, the container may be terminated with an OOMKilled error. |
| reloader.reloader.resources.requests | object | - | The minimum amount of resources the container is guaranteed. |
| reloader.reloader.resources.requests.cpu | string | "10m" | CPU request. |
| reloader.reloader.resources.requests.memory | string | "128Mi" | Memory request. |