Skip to content

Commit d2ec6b6

Browse files
authored
Release 25.4.9 (#465)
* refactor: remove metrics-gatherer deployment and service configurations from templates and values.yaml (#459) * bump app version to 25.0.4 * Add resources to hook containers #439 * Release 25.4.8 * chore: bump chart version to 25.4.9
1 parent c20c110 commit d2ec6b6

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

reportportal/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
apiVersion: v2
2-
appVersion: "25.0.4"
2+
appVersion: "25.0.6"
33
description: |
44
ReportPortal.io is a TestOps service, that provides increased capabilities
55
to speed up results analysis and reporting through the use of built-in analytic features.
66
name: reportportal
7-
version: 25.2.27
7+
version: 25.4.9
88
sources:
99
- https://github.com/reportportal/kubernetes/tree/master/reportportal
1010
keywords:

reportportal/templates/hooks/tests/readiness-test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,7 @@ spec:
3131
fi;
3232
done;
3333
echo "All health checks passed.";
34+
resources:
35+
{{- toYaml .Values.hooks.test.resources | nindent 6 }}
3436
restartPolicy: Never
3537
{{- end }}

reportportal/templates/hooks/upgrade/pre-upgrade-cleanup.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,6 @@ spec:
3131
- -c
3232
- |
3333
kubectl delete job {{ include "reportportal.fullname" . }}-migrations --ignore-not-found=true
34+
resources:
35+
{{- toYaml .Values.hooks.preUpgrade.resources | nindent 10 }}
3436
{{- end }}

reportportal/values.yaml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ serviceindex:
3030
name: index
3131
image:
3232
repository: reportportal/service-index
33-
tag: 5.13.0
33+
tag: 5.13.1
3434
pullPolicy: Always
3535
resources:
3636
requests:
@@ -78,7 +78,7 @@ serviceui:
7878
name: ui
7979
image:
8080
repository: reportportal/service-ui
81-
tag: 5.12.4
81+
tag: 5.12.5
8282
pullPolicy: Always
8383
replicaCount: 1
8484
resources:
@@ -128,7 +128,7 @@ serviceapi:
128128
name: api
129129
image:
130130
repository: reportportal/service-api
131-
tag: 5.13.4
131+
tag: 5.13.5
132132
pullPolicy: Always
133133
replicaCount: 1
134134
readinessProbe:
@@ -275,7 +275,7 @@ uat:
275275
name: uat
276276
image:
277277
repository: reportportal/service-authorization
278-
tag: 5.13.1
278+
tag: 5.13.2
279279
pullPolicy: Always
280280
replicaCount: 1
281281
readinessProbe:
@@ -566,7 +566,7 @@ serviceanalyzertrain:
566566
migrations:
567567
image:
568568
repository: reportportal/migrations
569-
tag: 5.13.0
569+
tag: 5.13.2
570570
resources:
571571
requests:
572572
cpu: 100m
@@ -828,8 +828,22 @@ hooks:
828828
enabled: true
829829
preUpgrade:
830830
enabled: true
831+
resources:
832+
requests:
833+
cpu: 50m
834+
memory: 64Mi
835+
limits:
836+
cpu: 100m
837+
memory: 128Mi
831838
test:
832839
enabled: true
840+
resources:
841+
requests:
842+
cpu: 50m
843+
memory: 64Mi
844+
limits:
845+
cpu: 100m
846+
memory: 128Mi
833847

834848
## @section External dependencies installation configuration
835849
##

0 commit comments

Comments
 (0)