From 5aa0ee80825de79eb87d692314244085d79da430 Mon Sep 17 00:00:00 2001 From: IvanBorislavovDimitrov Date: Mon, 1 Jun 2026 18:59:03 +0300 Subject: [PATCH] Showcase health-check-interval in cf-app example Add health-check-interval next to the existing health-check-* parameters in both mta.yaml and mtad.yaml of the canonical cf-app example, so users can see how to configure the liveness probe frequency. JIRA:LMCROSSITXSADEPLOY-3316 --- cf-app/mta.yaml | 1 + cf-app/mtad.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/cf-app/mta.yaml b/cf-app/mta.yaml index 4143e3d..716c38d 100644 --- a/cf-app/mta.yaml +++ b/cf-app/mta.yaml @@ -30,5 +30,6 @@ modules: health-check-type: http #http/port/process health-check-http-endpoint: "/index" # the http route pinged health-check-timeout: 180 #seconds + health-check-interval: 15 #seconds; how often CF runs the liveness check app-features: ssh: true diff --git a/cf-app/mtad.yaml b/cf-app/mtad.yaml index d0064ad..6b6d28a 100644 --- a/cf-app/mtad.yaml +++ b/cf-app/mtad.yaml @@ -30,5 +30,6 @@ modules: health-check-type: http #http/port/process health-check-http-endpoint: "/index" # the http route pinged health-check-timeout: 180 #seconds + health-check-interval: 15 #seconds; how often CF runs the liveness check app-features: ssh: true