Skip to content

Commit

Permalink
kfp: increase memory limit for workflow-controller (kubeflow#994)
Browse files Browse the repository at this point in the history
  • Loading branch information
chensun authored Mar 15, 2022
1 parent 0cde9a6 commit 98e0563
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions acm-repos/kfp-standalone-1/kfp-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2955,6 +2955,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: workflow-controller
application-crd-id: kubeflow-pipelines
name: workflow-controller
namespace: kubeflow
Expand Down Expand Up @@ -2999,6 +3000,8 @@ spec:
name: metrics
- containerPort: 6060
resources:
limits:
memory: 1Gi
requests:
cpu: 100m
memory: 500Mi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ patchesStrategicMerge:
- workflow-controller-configmap-patch.yaml
- status-deletion.yaml
- mysql-patch.yaml
- workflow-controller-patch.yaml

#### Customization ###
# 1. Change values in params.env file
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: workflow-controller
labels:
app: workflow-controller
spec:
template:
spec:
containers:
- name: workflow-controller
resources:
limits:
memory: 1Gi

0 comments on commit 98e0563

Please sign in to comment.