Skip to content

Commit

Permalink
Fixed whitespaces in example ingress yaml (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksiadz authored and cyriltovena committed Nov 5, 2019
1 parent cb4f5b4 commit 0b62914
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/installation/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,21 +95,21 @@ Sample Helm template for Ingress:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
annotations:
kubernetes.io/ingress.class: {{ .Values.ingress.class }}
ingress.kubernetes.io/auth-type: "basic"
ingress.kubernetes.io/auth-secret: {{ .Values.ingress.basic.secret }}
name: loki
name: loki
spec:
rules:
- host: {{ .Values.ingress.host }}
rules:
- host: {{ .Values.ingress.host }}
http:
paths:
- backend:
serviceName: loki
servicePort: 3100
tls:
- secretName: {{ .Values.ingress.cert }}
paths:
- backend:
serviceName: loki
servicePort: 3100
tls:
- secretName: {{ .Values.ingress.cert }}
hosts:
- {{ .Values.ingress.host }}
```

0 comments on commit 0b62914

Please sign in to comment.