Skip to content

Commit

Permalink
fix path default for ingress (#79)
Browse files Browse the repository at this point in the history
* fix path default for ingress

* bump chart version
  • Loading branch information
weixcloud authored Oct 16, 2021
1 parent ea8ce14 commit b26ec70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/graylog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: graylog
home: https://www.graylog.org
version: 1.8.9
version: 1.8.10
appVersion: 4.1.3
description: Graylog is the centralized log management solution built to open standards for capturing, storing, and enabling real-time analysis of terabytes of machine data.
keywords:
Expand Down
4 changes: 2 additions & 2 deletions charts/graylog/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ spec:
name: {{ template "graylog.fullname" $ }}-web
port:
name: graylog
path: {{ default $.Values.graylog.ingress.path "/" }}
pathType: {{ default $.Values.graylog.ingress.pathType "Prefix" }}
path: {{ default "/" $.Values.graylog.ingress.path }}
pathType: {{ default "Prefix" $.Values.graylog.ingress.pathType }}
{{- else }}
- backend:
serviceName: {{ template "graylog.fullname" $ }}-web
Expand Down

0 comments on commit b26ec70

Please sign in to comment.