mittwald / kubernetes-secret-generator

Kubernetes controller for automatically generating and updating secrets
Apache License 2.0
329 stars 56 forks source link

Add customizable liveness and readiness probes #99

Closed mattmattox closed 4 months ago

mattmattox commented 4 months ago

This PR introduces the ability to customize the liveness and readiness probes through the chart's values.yaml. Users can now adjust the initial delay, period, timeout, success threshold, and failure threshold for both probes. Additionally, it's now possible to disable either probe by setting the enabled flag to false.

This enhancement improves the flexibility of the deployment configurations, allowing users to tailor the health check mechanisms to better suit their specific service requirements and operational environments.

Changes made:

This change resolves https://github.com/mittwald/kubernetes-secret-generator/issues/96, addressing the need for more configurable liveness and readiness probes as requested by the community.