Add ingress fixes #3
This commit is contained in:
		
							parent
							
								
									526bb2997a
								
							
						
					
					
						commit
						2107e4e55e
					
				
					 1 changed files with 39 additions and 0 deletions
				
			
		
							
								
								
									
										39
									
								
								templates/ingress.yaml
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								templates/ingress.yaml
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,39 @@
 | 
				
			||||||
 | 
					{{- if .Values.ingress.enabled -}}
 | 
				
			||||||
 | 
					{{- $fullName := include "glitchtip.fullname" . -}}
 | 
				
			||||||
 | 
					{{- $svcPort := .Values.service.port -}}
 | 
				
			||||||
 | 
					{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
 | 
				
			||||||
 | 
					apiVersion: networking.k8s.io/v1beta1
 | 
				
			||||||
 | 
					{{- else -}}
 | 
				
			||||||
 | 
					apiVersion: extensions/v1beta1
 | 
				
			||||||
 | 
					{{- end }}
 | 
				
			||||||
 | 
					kind: Ingress
 | 
				
			||||||
 | 
					metadata:
 | 
				
			||||||
 | 
					  name: {{ $fullName }}
 | 
				
			||||||
 | 
					  labels:
 | 
				
			||||||
 | 
					    {{- include "glitchtip.labels" . | nindent 4 }}
 | 
				
			||||||
 | 
					  {{- with .Values.ingress.annotations }}
 | 
				
			||||||
 | 
					  annotations:
 | 
				
			||||||
 | 
					    {{- toYaml . | nindent 4 }}
 | 
				
			||||||
 | 
					  {{- end }}
 | 
				
			||||||
 | 
					spec:
 | 
				
			||||||
 | 
					  {{- if .Values.ingress.tls }}
 | 
				
			||||||
 | 
					  tls:
 | 
				
			||||||
 | 
					    {{- range .Values.ingress.tls }}
 | 
				
			||||||
 | 
					    - hosts:
 | 
				
			||||||
 | 
					        {{- range .hosts }}
 | 
				
			||||||
 | 
					        - {{ . | quote }}
 | 
				
			||||||
 | 
					        {{- end }}
 | 
				
			||||||
 | 
					      secretName: {{ .secretName }}
 | 
				
			||||||
 | 
					    {{- end }}
 | 
				
			||||||
 | 
					  {{- end }}
 | 
				
			||||||
 | 
					  rules:
 | 
				
			||||||
 | 
					    {{- range .Values.ingress.hosts }}
 | 
				
			||||||
 | 
					    - host: {{ .host | quote }}
 | 
				
			||||||
 | 
					      http:
 | 
				
			||||||
 | 
					        paths:
 | 
				
			||||||
 | 
					          - pathType: ImplementationSpecific
 | 
				
			||||||
 | 
					            backend:
 | 
				
			||||||
 | 
					              serviceName: {{ $fullName }}
 | 
				
			||||||
 | 
					              servicePort: {{ $svcPort }}
 | 
				
			||||||
 | 
					    {{- end }}
 | 
				
			||||||
 | 
					  {{- end }}
 | 
				
			||||||
		Reference in a new issue