diff options
Diffstat (limited to 'grumpy/gitolite/templates/gitolite-ingress.yaml')
| -rw-r--r-- | grumpy/gitolite/templates/gitolite-ingress.yaml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/grumpy/gitolite/templates/gitolite-ingress.yaml b/grumpy/gitolite/templates/gitolite-ingress.yaml deleted file mode 100644 index e6bf450..0000000 --- a/grumpy/gitolite/templates/gitolite-ingress.yaml +++ /dev/null @@ -1,22 +0,0 @@ -{{- if .Values.HostName }} -apiVersion: {{ .Values.NetworkPolicy.ApiVersion }} -kind: Ingress -metadata: -{{- if .Values.Ingress.Annotations }} - annotations: -{{ toYaml .Values.Ingress.Annotations | indent 4 }} -{{- end }} - name: {{ template "gitolite.fullname" . }} -spec: - rules: - - host: {{ .Values.HostName | quote }} - http: - paths: - - backend: - serviceName: {{ template "gitolite.fullname" . }} - servicePort: {{ .Values.ServicePort }} -{{- if .Values.Ingress.TLS }} - tls: -{{ toYaml .Values.Ingress.TLS | indent 4 }} -{{- end -}} -{{- end }} |