Skip to content

Commit f83edae

Browse files
authored
Merge pull request opendatahub-io#90 from HumairAK/odh-main
lower resource requests
2 parents d9ee12b + 6118e64 commit f83edae

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

config/base/params.env

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
IMAGES_APISERVER=quay.io/opendatahub/ds-pipelines-api-server:main-766729f
2-
IMAGES_ARTIFACT=quay.io/opendatahub/ds-pipelines-artifact-manager:main-766729f
3-
IMAGES_PERSISTENTAGENT=quay.io/opendatahub/ds-pipelines-persistenceagent:main-766729f
4-
IMAGES_SCHEDULEDWORKFLOW=quay.io/opendatahub/ds-pipelines-scheduledworkflow:main-766729f
5-
IMAGES_VIEWERCRD=quay.io/opendatahub/ds-pipelines-viewercontroller:main-766729f
1+
IMAGES_APISERVER=quay.io/opendatahub/ds-pipelines-api-server:main-0e8a011
2+
IMAGES_ARTIFACT=quay.io/opendatahub/ds-pipelines-artifact-manager:main-0e8a011
3+
IMAGES_PERSISTENTAGENT=quay.io/opendatahub/ds-pipelines-persistenceagent:main-0e8a011
4+
IMAGES_SCHEDULEDWORKFLOW=quay.io/opendatahub/ds-pipelines-scheduledworkflow:main-0e8a011
5+
IMAGES_VIEWERCRD=quay.io/opendatahub/ds-pipelines-viewercontroller:main-0e8a011
66
IMAGES_CACHE=registry.access.redhat.com/ubi8/ubi-minimal
77
IMAGES_MOVERESULTSIMAGE=registry.access.redhat.com/ubi8/ubi-micro
88
IMAGES_MARIADB=registry.redhat.io/rhel8/mariadb-103:1-188
9-
IMAGES_DSPO=quay.io/opendatahub/data-science-pipelines-operator:v0.1.0
9+
IMAGES_DSPO=quay.io/opendatahub/data-science-pipelines-operator:main-d9ee12b

config/manager/manager.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
selector:
1515
matchLabels:
1616
control-plane: controller-manager
17-
replicas: 3
17+
replicas: 1
1818
template:
1919
metadata:
2020
annotations:
@@ -78,8 +78,8 @@ spec:
7878
cpu: 1
7979
memory: 4Gi
8080
requests:
81-
cpu: 1
82-
memory: 2Gi
81+
cpu: 10m
82+
memory: 64Mi
8383
volumeMounts:
8484
- mountPath: /home/config
8585
name: config

tests/basictests/dsp-operator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function verify_data_science_pipelines_operator_install() {
2020

2121
os::cmd::expect_success_and_text "oc get deployment -n ${ODHPROJECT} data-science-pipelines-operator-controller-manager" "data-science-pipelines-operator-controller-manager"
2222
runningpods=($(oc get pods -n ${ODHPROJECT} --field-selector="status.phase=Running" | grep data-science-pipelines-operator | wc -l))
23-
os::cmd::expect_success_and_text "echo $runningpods" "3"
23+
os::cmd::expect_success_and_text "echo $runningpods" "1"
2424
}
2525

2626
function create_and_verify_data_science_pipelines_resources() {

0 commit comments

Comments
 (0)