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

Update docling-serve port across openshift and podman manifests #517

Merged
merged 1 commit into from
Jan 29, 2025
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
6 changes: 3 additions & 3 deletions deploy/k8s/base/doclingserve/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ spec:
imagePullPolicy: Always
resources:
requests:
cpu: 100m
memory: 200Mi
cpu: 1000m
memory: 2000Mi
ports:
- name: http
protocol: TCP
containerPort: 5000
containerPort: 5001
restartPolicy: Always
4 changes: 2 additions & 2 deletions deploy/k8s/base/doclingserve/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ spec:
app.kubernetes.io/instance: doclingserve
app.kubernetes.io/name: doclingserve
ports:
- port: 5000
targetPort: 5000
- port: 5001
targetPort: 5001
3 changes: 0 additions & 3 deletions deploy/k8s/base/pathservice/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ spec:
requests:
cpu: 100m
memory: 200Mi
limits:
cpu: 100m
memory: 200Mi
ports:
- name: http
protocol: TCP
Expand Down
3 changes: 0 additions & 3 deletions deploy/k8s/base/ui/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ spec:
requests:
cpu: 100m
memory: 200Mi
limits:
cpu: 100m
memory: 200Mi
ports:
- name: http
protocol: TCP
Expand Down
4 changes: 2 additions & 2 deletions deploy/podman/github/instructlab-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ spec:
cpu: "100m"
memory: "200Mi"
ports:
- containerPort: 5000
hostPort: 5000
- containerPort: 5001
hostPort: 5001
imagePullPolicy: Always
---
apiVersion: apps/v1
Expand Down
4 changes: 2 additions & 2 deletions deploy/podman/native/instructlab-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ spec:
cpu: "1000m"
memory: "2000Mi"
ports:
- containerPort: 5000
hostPort: 5000
- containerPort: 5001
hostPort: 5001
imagePullPolicy: Always
---
apiVersion: apps/v1
Expand Down