BUG: add missing namespace in ingress object (#2205)

* add missing namespace in ingress object

* update chart version

* bump loki stack as well
k22
Joshua Hügli 5 years ago committed by GitHub
parent 59f312545c
commit 1127d9328b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      production/helm/loki-stack/Chart.yaml
  2. 2
      production/helm/loki/Chart.yaml
  3. 1
      production/helm/loki/templates/ingress.yaml

@ -1,6 +1,6 @@
apiVersion: "v1"
name: loki-stack
version: 0.37.3
version: 0.37.4
appVersion: v1.5.0
kubeVersion: "^1.10.0-0"
description: "Loki: like Prometheus, but for logs."

@ -1,6 +1,6 @@
apiVersion: "v1"
name: loki
version: 0.29.0
version: 0.29.1
appVersion: v1.5.0
kubeVersion: "^1.10.0-0"
description: "Loki: like Prometheus, but for logs."

@ -9,6 +9,7 @@ apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
namespace: {{ .Release.Namespace }}
labels:
app: {{ template "loki.name" . }}
chart: {{ template "loki.chart" . }}

Loading…
Cancel
Save