Skip to content

Commit ff6b937

Browse files
authored
Merge pull request #18 from platiagro/feature/update_limits
Feature/update limits
2 parents c7834a3 + 0a4115e commit ff6b937

File tree

17 files changed

+29
-29
lines changed

17 files changed

+29
-29
lines changed

Diff for: contrib/platiagro/datasets/base/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
secretKeyRef:
2929
name: minio-secrets
3030
key: MINIO_SECRET_KEY
31-
image: docker.io/platiagro/datasets:0.3.0-SNAPSHOT
31+
image: docker.io/platiagro/datasets:0.3.1
3232
imagePullPolicy: IfNotPresent
3333
ports:
3434
- name: http

Diff for: contrib/platiagro/datasets/base/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace: platiagro
44

55
images:
66
- name: docker.io/platiagro/datasets
7-
newTag: 0.3.0-SNAPSHOT
7+
newTag: 0.3.1
88

99
resources:
1010
- deployment.yaml

Diff for: contrib/platiagro/datasets/overlays/application/application.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ spec:
66
selector:
77
matchLabels:
88
app.kubernetes.io/component: platiagro-datasets
9-
app.kubernetes.io/instance: platiagro-datasets-0.3.0
9+
app.kubernetes.io/instance: platiagro-datasets-0.3.1
1010
app.kubernetes.io/managed-by: kfctl
1111
app.kubernetes.io/name: platiagro-datasets
1212
app.kubernetes.io/part-of: kubeflow
13-
app.kubernetes.io/version: "0.3.0"
13+
app.kubernetes.io/version: "0.3.1"
1414
componentKinds:
1515
- group: v1
1616
kind: Service

Diff for: contrib/platiagro/installs/generic/job.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
- command:
1111
- python
1212
- /app/main.py
13-
image: platiagro/tasks:0.3.0-SNAPSHOT
13+
image: platiagro/tasks:0.3.1
1414
name: init-tasks
1515
env:
1616
- name: MYSQL_DB_HOST

Diff for: contrib/platiagro/installs/generic/params.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
appName=platiagro
2-
appVersion=0.3.0
2+
appVersion=0.3.1

Diff for: contrib/platiagro/notebook/base/params.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
image=platiagro/platiagro-notebook-image:0.3.0
2-
memory-limits=10G
3-
cpu-limits=2000m
2+
memory-limits=4G
3+
cpu-limits=200m

Diff for: contrib/platiagro/notebook/base/persistent-volume-claim.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
- ReadWriteOnce
88
resources:
99
requests:
10-
storage: 10Gi
10+
storage: 1Gi
1111
---
1212
apiVersion: v1
1313
kind: PersistentVolumeClaim
@@ -18,7 +18,7 @@ spec:
1818
- ReadWriteOnce
1919
resources:
2020
requests:
21-
storage: 10Gi
21+
storage: 1Gi
2222
---
2323
apiVersion: v1
2424
kind: PersistentVolumeClaim
@@ -29,4 +29,4 @@ spec:
2929
- ReadWriteOnce
3030
resources:
3131
requests:
32-
storage: 10Gi
32+
storage: 1Gi

Diff for: contrib/platiagro/projects/base/deployment.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ spec:
4646
- name: SELDON_REST_TIMEOUT
4747
value: "60000"
4848
- name: TASK_DEFAULT_MEMORY_REQUEST
49-
value: 2Gi
49+
value: 1Gi
5050
- name: TASK_DEFAULT_CPU_REQUEST
5151
value: 100m
5252
- name: TASK_DEFAULT_MEMORY_LIMIT
53-
value: 10Gi
53+
value: 8Gi
5454
- name: TASK_DEFAULT_CPU_LIMIT
5555
value: 2000m
5656
- name: TASK_DEFAULT_DEPLOYMENT_IMAGE
@@ -69,7 +69,7 @@ spec:
6969
value: ""
7070
- name: MAIL_SERVER
7171
value: ""
72-
image: docker.io/platiagro/projects:0.3.0-SNAPSHOT
72+
image: docker.io/platiagro/projects:0.3.1
7373
imagePullPolicy: IfNotPresent
7474
ports:
7575
- name: http
@@ -116,6 +116,6 @@ spec:
116116
key: MYSQL_ROOT_PASSWORD
117117
- name: KF_PIPELINES_NAMESPACE
118118
value: anonymous
119-
image: docker.io/platiagro/persistence-agent:0.3.0-SNAPSHOT
119+
image: docker.io/platiagro/persistence-agent:0.3.1
120120
imagePullPolicy: IfNotPresent
121121
serviceAccountName: platiagro

Diff for: contrib/platiagro/projects/base/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ configMapGenerator:
88

99
images:
1010
- name: docker.io/platiagro/projects
11-
newTag: 0.3.0-SNAPSHOT
11+
newTag: 0.3.1
1212

1313
resources:
1414
- deployment.yaml

Diff for: contrib/platiagro/projects/overlays/application/application.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ spec:
66
selector:
77
matchLabels:
88
app.kubernetes.io/component: platiagro-projects
9-
app.kubernetes.io/instance: platiagro-projects-0.3.0
9+
app.kubernetes.io/instance: platiagro-projects-0.3.1
1010
app.kubernetes.io/managed-by: kfctl
1111
app.kubernetes.io/name: platiagro-projects
1212
app.kubernetes.io/part-of: kubeflow
13-
app.kubernetes.io/version: "0.3.0"
13+
app.kubernetes.io/version: "0.3.1"
1414
componentKinds:
1515
- group: v1
1616
kind: Service

Diff for: contrib/platiagro/web-ui/base/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: web-ui
16-
image: docker.io/platiagro/web-ui:0.3.0-SNAPSHOT
16+
image: docker.io/platiagro/web-ui:0.3.1
1717
imagePullPolicy: IfNotPresent
1818
ports:
1919
- name: http

Diff for: contrib/platiagro/web-ui/base/kustomization.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace: platiagro
44

55
images:
66
- name: docker.io/platiagro/web-ui
7-
newTag: 0.3.0-SNAPSHOT
7+
newTag: 0.3.1
88

99
resources:
1010
- deployment.yaml
@@ -13,4 +13,4 @@ resources:
1313
images:
1414
- name: docker.io/platiagro/web-ui
1515
newName: docker.io/platiagro/web-ui
16-
newTag: 0.3.0-SNAPSHOT
16+
newTag: 0.3.1

Diff for: contrib/platiagro/web-ui/overlays/application/application.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ spec:
66
selector:
77
matchLabels:
88
app.kubernetes.io/component: platiagro-web-ui
9-
app.kubernetes.io/instance: platiagro-web-ui-0.3.0
9+
app.kubernetes.io/instance: platiagro-web-ui-0.3.1
1010
app.kubernetes.io/managed-by: kfctl
1111
app.kubernetes.io/name: platiagro-web-ui
1212
app.kubernetes.io/part-of: kubeflow
13-
app.kubernetes.io/version: "0.3.0"
13+
app.kubernetes.io/version: "0.3.1"
1414
componentKinds:
1515
- group: v1
1616
kind: Service

Diff for: platiagro-auth/patches/dex-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: dex
11-
image: platiagro/dex-auth:0.3.0-SNAPSHOT
11+
image: platiagro/dex-auth:0.3.1

Diff for: platiagro-gpu-auth/patches/custom-notebook-image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ spec:
1919
cpu: 100m
2020
memory: 2G
2121
limits:
22-
cpu: 2000m
23-
memory: 10G
22+
cpu: 200m
23+
memory: 4G
2424
volumeMounts:
2525
- mountPath: /home/jovyan/tasks
2626
name: vol-tasks

Diff for: platiagro-gpu-auth/patches/dex-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: dex
11-
image: platiagro/dex-auth:0.3.0-SNAPSHOT
11+
image: platiagro/dex-auth:0.3.1

Diff for: platiagro-gpu/patches/custom-notebook-image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ spec:
1919
cpu: 100m
2020
memory: 2G
2121
limits:
22-
cpu: 2000m
23-
memory: 10G
22+
cpu: 200m
23+
memory: 4G
2424
volumeMounts:
2525
- mountPath: /home/jovyan/tasks
2626
name: vol-tasks

0 commit comments

Comments
 (0)