Skip to content

Commit

Permalink
Merge pull request #6 from jranson/v1.5.0-final
Browse files Browse the repository at this point in the history
V1.5.0 final
  • Loading branch information
James Ranson authored Jun 2, 2020
2 parents 78516f8 + a054d38 commit 689549d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/trickster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions charts/trickster/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 5 additions & 0 deletions charts/trickster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 689549d

Please sign in to comment.