Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove traefik proxy in Kubernetes #8480

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions packages/grid/helm/syft/templates/grid-stack-ingress-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,28 @@ spec:
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
defaultBackend:
service:
name: proxy
port:
number: 80
rules:
- http:
paths:
- backend:
- path: /
pathType: Prefix
backend:
service:
name: proxy
name: frontend
port:
number: 80
path: /
- path: /api
pathType: Prefix
backend:
service:
name: backend
port:
number: 80
- path: /blob
pathType: Prefix
backend:
service:
name: seaweedfs
port:
number: 8333
{{ end }}
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,31 @@ spec:
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
defaultBackend:
service:
name: proxy
port:
number: 80
rules:
- host: {{ .Values.node.settings.hostname }}
http:
paths:
- backend:
- path: /
pathType: Prefix
backend:
service:
name: proxy
name: frontend
port:
number: 80
path: /
- path: /api
pathType: Prefix
backend:
service:
name: backend
port:
number: 80
- path: /blob
pathType: Prefix
backend:
service:
name: seaweedfs
port:
number: 8333
tls:
- hosts:
- {{ .Values.node.settings.hostname }}
Expand Down
62 changes: 0 additions & 62 deletions packages/grid/helm/syft/templates/proxy-deployment.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions packages/grid/helm/syft/templates/proxy-service.yaml

This file was deleted.

This file was deleted.

Loading