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

Adapt to the rest interface of serving server #911

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions helm-charts/FATE-Serving/templates/serving-server-module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ spec:
nodePort: {{ .Values.servingServer.nodePort }}
{{- end }}
protocol: TCP
- name: "8080"
port: 8080
targetPort: 8080
{{- if eq .Values.servingServer.type "NodePort" "LoadBalancer" }}
nodePort: {{ .Values.servingServer.httpNodePort }}
{{- end }}
protocol: TCP
type: {{ .Values.servingServer.type }}
{{- if .Values.servingServer.loadBalancerIP }}
loadBalancerIP: "{{ .Values.servingServer.loadBalancerIP }}"
Expand Down
1 change: 1 addition & 0 deletions helm-charts/FATE-Serving/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ servingServer:
include: true
type: NodePort
nodePort: 30209
httpNodePort: 30210
loadBalancerIP:
fateflow:
ip: fateflow
Expand Down
Loading