From bda8a1c25070678e6efd22003e398691404c832f Mon Sep 17 00:00:00 2001 From: Max Resnick Date: Sat, 9 Oct 2021 23:07:53 -0700 Subject: feat: switch to kustomize from helm --- grumpy/static-files/templates/ingress.yaml | 37 ------------------------------ 1 file changed, 37 deletions(-) delete mode 100644 grumpy/static-files/templates/ingress.yaml (limited to 'grumpy/static-files/templates/ingress.yaml') diff --git a/grumpy/static-files/templates/ingress.yaml b/grumpy/static-files/templates/ingress.yaml deleted file mode 100644 index cd442fa..0000000 --- a/grumpy/static-files/templates/ingress.yaml +++ /dev/null @@ -1,37 +0,0 @@ -{{- if .Values.ingress.enabled -}} -{{- $fullName := include "static-files.fullname" . -}} -{{- $svcPort := .Values.service.port -}} -apiVersion: extensions/v1beta1 -kind: Ingress -metadata: - name: {{ $fullName }} - labels: -{{ include "static-files.labels" . | indent 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: - {{- range .paths }} - - path: {{ . }} - backend: - serviceName: {{ $fullName }} - servicePort: {{ $svcPort }} - {{- end }} - {{- end }} -{{- end }} -- cgit v1.2.3