Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit 46969ae

Browse files
committed
fix: add test.enabled as value
1 parent 5f82c3d commit 46969ae

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## v0.5.5 (2021-03-05)
6+
### 🛠 Bug fixes
7+
* Add variable to enable test ressources `test.enabled`
8+
59
## v0.5.4 (2020-10-06)
610
### 🛠 Bug fixes
711
* Add persistent volume for helm test report file

templates/test/output-pvc.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{- if .Values.test.enabled }}
12
apiVersion: v1
23
kind: PersistentVolumeClaim
34
metadata:
@@ -10,3 +11,4 @@ spec:
1011
resources:
1112
requests:
1213
storage: 10M
14+
{{- end }}

templates/test/test-worker.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{- if .Values.test.enabled }}
12
---
23
apiVersion: v1
34
kind: Pod
@@ -45,3 +46,4 @@ spec:
4546
- name: output
4647
persistentVolumeClaim:
4748
claimName: {{ template "orchestrate-worker.fullname" . }}-output-pvc
49+
{{- end }}

values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ service:
6060
metrics:
6161
port: 8082
6262

63+
test:
64+
enabled: false
6365
testImage:
6466
repository: docker.cloudsmith.io/consensys/docker-private/orchestrate-e2e
6567
tag: v2.4.0-rc2

0 commit comments

Comments
 (0)