Skip to content

Commit

Permalink
[EAP7-1769] Add support for configuring Kubernetes startup probe via …
Browse files Browse the repository at this point in the history
…Helm Charts
  • Loading branch information
yersan committed Oct 21, 2024
1 parent a70a6ab commit d8d6f0c
Show file tree
Hide file tree
Showing 2 changed files with 138 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _data/wildfly-categories.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ categories:
- name: Embedded
id: embedded
description: Embedding WildFly in another process
- name: Helm Charts
id: helm-charts
description: WildFly Helm Charts
- name: IIOP
id: iiop
description: Internet InterORB Protocol and CORBA
Expand Down
135 changes: 135 additions & 0 deletions cloud/EAP7-1769-Helm-cahrts-Configuring-Kubernetes-startup-probe.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
---
categories:
- helm-charts
stability-level: default
issue: https://github.com/wildfly/wildfly-charts/issues/37
feature-team:
developer: yersan
sme: jmesnil
-
outside-perspective:
- laDok8
---
= [Default] Add support for configuring Kubernetes startup probe via Helm Charts
:author: Yeray Borges
:email: [email protected]
:toc: left
:icons: font
:idprefix:
:idseparator: -

== Overview

The probes (Liveness and Readiness) added by the Helm Chart uses the following default values:

[literal]
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
initialDelaySeconds: 0

For the liveness probes, for example, this configuration means the server could take until `failureThreshold*periodSeconds=30` seconds to get started. If such a condition doesn't occur the cluster will kill the pod to start over it again (restart policy is always).

Sometimes the pod could need more than 30 seconds to start, for example:

The user has registered other liveness checks in their application code and to satisfy those conditions is needed more time.
The management operations executed at runtime when the pod is started could also take some time to be applied, which delays the availability of the endpoint used by the default liveness probe.
The node where the pod is running is slow.
In such a case, users could be tempted to increase the `initialDelaySeconds` or the `failureThreshold` configuration, however increasing the `initialDelaySeconds` will delay a fixed value, which could compromise the expected fast response. Increasing the `failureThreshold` could also break the established conditions you have decided to check your application at runtime.

The alternative to those issues is to have the ability to configure a Startup Probe. The Startup Probe can be used to delay the initial checks done by the liveness and readiness probes, allowing some configuration without compromising them.

The goal of this RFE is to define the default initial configuration of a Startup Probe so users can tweak it when required.


=== User Stories

As a user, I want to delay the initial liveness and readiness check using an Startup probe.

== Issue Metadata

=== Related Issues

* https://issues.redhat.com/browse/EAP7-1769

=== Affected Projects or Components

* WildFly Helm Charts

=== Other Interested Projects

=== Relevant Installation Types

* OpenShift Source-to-Image (S2I)

== Requirements

* By default, the Chart will include a Startup Probe to give three minutes as additional time before starting the Readiness and Liveness probes.
* The proposal for the initial values is the following:
+
[literal]
failureThreshold: 36
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
initialDelaySeconds: 5

* Users should be able to tweak any of those default values when they are installing the chart.

=== Changed requirements

* N/A

=== Non-Requirements

* N/A

=== Future Work

* N/A

== Backwards Compatibility

* N/A

=== Default Configuration

* N/A

=== Importing Existing Configuration

* N/A

=== Deployments

* N/A

=== Interoperability

* N/A

== Implementation Plan

* N/A

== Admin Clients

* N/A

== Security Considerations

* N/A

[[test_plan]]
== Test Plan

* Test plan will be delivered by a professional Quality Engineer with subject matter expertise.

== Community Documentation

The Helm Chart docs will include a description of the uses of the Startup Probe.

== Release Note Content

Added the ability to configure a Startup Probe using WildFly Helm Charts.

0 comments on commit d8d6f0c

Please sign in to comment.