diff --git a/charts/trickster/Chart.yaml b/charts/trickster/Chart.yaml index db6f612..f155b37 100644 --- a/charts/trickster/Chart.yaml +++ b/charts/trickster/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 1.1 description: Trickster is an HTTP Reverse Proxy Cache and time series query accelerator. name: trickster -version: 1.6.0 +version: 1.5.0 home: https://github.com/tricksterproxy/trickster icon: https://helm.tricksterproxy.io/img/trickster-horizontal.png sources: diff --git a/charts/trickster/templates/configmap.yaml b/charts/trickster/templates/configmap.yaml index a2099ef..25bd997 100644 --- a/charts/trickster/templates/configmap.yaml +++ b/charts/trickster/templates/configmap.yaml @@ -13,6 +13,9 @@ data: {{- if .Values.pingHandlerPath }} ping_handler_path = {{ .Values.pingHandlerPath | quote }} {{- end }} + {{- if .Values.healthHandlerPath }} + health_handler_path = {{ .Values.healthHandlerPath | quote }} + {{- end }} {{- if .pprofServer }} pprof_server = {{ .pprofServer | quote }} {{- end }} diff --git a/charts/trickster/values.yaml b/charts/trickster/values.yaml index 0f23b44..a0bb33d 100644 --- a/charts/trickster/values.yaml +++ b/charts/trickster/values.yaml @@ -504,6 +504,11 @@ origins: # # which can be reached at http://your-trickster-endpoint:port/$ping_handler_path # pingHandlerPath: /trickster/ping +# # healthHandlerPath provides the HTTP path prefix you will use to perform an uptime health check against +# # configured Trickster origins via http://trickster/$health_handler_path/$origin_name +# # default is '/trickster/health'. Set to empty string to fully disable upstream health checking +# healthHandlerPath = '/trickster/health' + # # pprofServer provides the name of the http listener that will host the pprof debugging routes # # options are: "metrics", "reload", "both", or "off"; default is both # pprofServer: both