* add Helm chart known issues/future work: - SSO is unsupported - S3/Minio/GCS is unsupported - Swift is unsupported - WEB_DOMAIN is unsupported - Tor is unsupported * helm: clarify how LOCAL_DOMAIN is set * helm: add chart description * helm: make DB_POOL and Sidekiq concurrency configurable * helm: only enforce pod affinity when using ReadWriteOnce * helm: clarify compatibility * helm: clean up application variables * helm: add job to create initial admin
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
{{- if .Values.ingress.enabled -}}
 | 
						|
{{- $fullName := include "mastodon.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 "mastodon.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:
 | 
						|
    - host: {{ .Values.ingress.hostname | quote }}
 | 
						|
      http:
 | 
						|
        paths:
 | 
						|
          - path: '/'
 | 
						|
            backend:
 | 
						|
              serviceName: {{ $fullName }}-web
 | 
						|
              servicePort: {{ $svcPort }}
 | 
						|
          - path: '/api/v1/streaming'
 | 
						|
            backend:
 | 
						|
              serviceName: {{ $fullName }}-streaming
 | 
						|
              servicePort: {{ .Values.application.streaming.port }}
 | 
						|
{{- end }}
 |