Skip to content

Commit 8738325

Browse files
authored
fix(helm): Fix inconsistent management endpoint paths from do (#68) (#69)
## Description Standardize management endpoint paths to use consistent /dotmgt prefix across all probe configurations. This fixes inconsistent endpoint naming that was using both /dotmgmt and /dotmgt prefixes throughout the chart. **Key Changes:** - Fix startup probe path: /dotmgmt/readyz → /dotmgt/readyz - Fix liveness probe path: /dotmgmt/livez → /dotmgt/livez - Fix readiness probe path: /dotmgmt/readyz → /dotmgt/readyz - Update corresponding documentation and default comments - Prometheus metrics path already correct at /dotmgt/metrics **Testing:** - Validated template parsing with corrected endpoint paths - Confirmed all probe configurations use consistent /dotmgt prefix - Verified ALB health checks point to correct management endpoints ## Changes - [ ] [List the main changes made] ## Testing - [ ] [Describe testing approach] Closes #68 **Issue:** Fix inconsistent management endpoint paths from do
1 parent 6ac563c commit 8738325

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

charts/dotcms/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: dotcms
33
description: A Helm chart for DotCMS cluster
44
type: application
5-
version: 1.0.31
5+
version: 1.0.32
66
appVersion: 1.0.0
77
maintainers:
88
- name: dcolina

charts/dotcms/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,8 @@ backup:
486486
startupProbe:
487487
httpGet:
488488
# -- Path to check for readiness
489-
# @default -- /dotmgmt/readyz
490-
path: /dotmgmt/readyz
489+
# @default -- /dotmgt/readyz
490+
path: /dotmgt/readyz
491491
# -- Port used for the readiness probe (defaults to management port if enabled)
492492
# @default -- 8090
493493
port: 8090
@@ -511,8 +511,8 @@ startupProbe:
511511
livenessProbe:
512512
httpGet:
513513
# -- Path to check liveness
514-
# @default -- /dotmgmt/livez
515-
path: /dotmgmt/livez
514+
# @default -- /dotmgt/livez
515+
path: /dotmgt/livez
516516
# -- Port used for the liveness probe
517517
# @default -- 8090
518518
port: 8090
@@ -536,8 +536,8 @@ livenessProbe:
536536
readinessProbe:
537537
httpGet:
538538
# -- Path to check readiness
539-
# @default -- /dotmgmt/readyz
540-
path: /dotmgmt/readyz
539+
# @default -- /dotmgt/readyz
540+
path: /dotmgt/readyz
541541
# -- Port used for the readiness probe
542542
# @default -- 8090
543543
port: 8090

0 commit comments

Comments
 (0)