Skip to content

Commit ede02b0

Browse files
committed
Tag: 2.2.8; CI/CD. Bumped runner helm chart version.
1 parent 7f1e2ae commit ede02b0

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

charts/testkube-runner/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: testkube-runner
33
description: A Helm chart for the Testkube's Runner Agent
44
type: application
5-
version: 2.2.6
5+
version: 2.2.8
66
appVersion: 2.2.5
77
dependencies:
88
- name: global

charts/testkube-runner/templates/deployment.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,11 @@ spec:
183183
secretKeyRef:
184184
name: "{{ .Values.runner.secretRef.name }}"
185185
key: "{{ .Values.runner.secretRef.secretKey }}"
186+
- name: "TESTKUBE_PRO_ENV_ID"
187+
valueFrom:
188+
secretKeyRef:
189+
name: "{{ .Values.runner.secretRef.name }}"
190+
key: "{{ .Values.runner.secretRef.envIdKey }}"
186191
{{- else }}
187192
{{- if not .Values.runner.register.token }}
188193
- name: "TESTKUBE_PRO_AGENT_ID"
@@ -192,6 +197,8 @@ spec:
192197
{{- end }}
193198
- name: "TESTKUBE_PRO_ORG_ID"
194199
value: "{{ .Values.runner.orgId }}"
200+
- name: "TESTKUBE_PRO_ENV_ID"
201+
value: "{{ .Values.runner.envId }}"
195202
{{- end }}
196203
- name: "TESTKUBE_PRO_URL"
197204
value: "{{ .Values.cloud.url }}"

charts/testkube-runner/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ runner:
1616
id: ""
1717
## Organization ID
1818
orgId: ""
19+
## Environment ID
20+
envId: ""
1921
## Secret Key
2022
secret: ""
2123
## Retrieve credential information from an existing secret
@@ -26,6 +28,8 @@ runner:
2628
idKey: "id"
2729
## Key for the Organization ID
2830
orgIdKey: "orgId"
31+
## Key for the Environment ID
32+
envIdKey: "envId"
2933
## Key for the Secret Key
3034
secretKey: "secret"
3135
## Self-registration using API token

0 commit comments

Comments
 (0)