File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : testkube-runner
33description : A Helm chart for the Testkube's Runner Agent
44type : application
5- version : 2.2.6
5+ version : 2.2.8
66appVersion : 2.2.5
77dependencies :
88- name : global
Original file line number Diff line number Diff 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 }}"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments