Skip to content

Commit

Permalink
Update docling port across openshift and podman manifests
Browse files Browse the repository at this point in the history
Signed-off-by: Anil Vishnoi <[email protected]>
  • Loading branch information
vishnoianil committed Jan 29, 2025
1 parent 79fd81c commit a46f727
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
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

0 comments on commit a46f727

Please sign in to comment.