Skip to content

Commit

Permalink
Release version 0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
darioblanco committed Nov 11, 2020
1 parent af76faa commit 23dff57
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Single sign-on for your Kubernetes services using Google OAuth
name: buzzfeed-sso
version: 0.2.7
version: 0.2.9
appVersion: 2.1.0
home: https://github.com/buzzfeed/sso
sources:
Expand Down
2 changes: 1 addition & 1 deletion templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ Return the apiVersion of ingress.
{{- else -}}
{{- print "extensions/v1beta1" -}}
{{- end -}}
{{- end -}}
{{- end -}}
7 changes: 7 additions & 0 deletions templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,21 @@ spec:
- host: {{ .domain }}
http:
paths:
{{- $pathType := .pathType -}}
{{- if .path }}
- path: {{ .path }}
{{- if $pathType }}
pathType: {{ $pathType }}
{{- end }}
backend:
serviceName: {{ $fullName }}-proxy
servicePort: http
{{- end }}
{{- range .paths }}
- path: {{ . }}
{{- if $pathType }}
pathType: {{ $pathType }}
{{- end }}
backend:
serviceName: {{ $fullName }}-proxy
servicePort: http
Expand Down

0 comments on commit 23dff57

Please sign in to comment.