Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #731 from torstenwalter/additionalParameters
Browse files Browse the repository at this point in the history
support additional parameters in zalenium-template
  • Loading branch information
pearj authored Sep 28, 2018
2 parents 39bb154 + bfb952f commit e1a7601
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions docs/k8s/zalenium-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,19 @@ parameters:
description: "Set to false if you do not want to send statistics back to Zalando."
value: "true"
required: false
- name: "VIDEO_RECORDING_ENABLED"
displayName: "Enable video recording during test runs"
description: "Set to false if you do not want video recording during test runs."
value: "true"
required: false
- name: "ZALENIUM_IMAGE_NAME"
displayName: "The name of the image used for zalenium hub"
value: "dosel/zalenium:latest"
required: false
- name: "SELENIUM_IMAGE_NAME"
displayName: "The name of image for the selenium nodes"
value: "elgalu/selenium:latest"
required: false
labels:
app: zalenium
objects:
Expand Down Expand Up @@ -145,8 +158,10 @@ objects:
- name: SEND_ANONYMOUS_USAGE_INFO
value: ${SEND_ANONYMOUS_USAGE_INFO}
- name: SELENIUM_IMAGE_NAME
value: "elgalu/selenium:latest"
image: dosel/zalenium:latest
value: ${SELENIUM_IMAGE_NAME}
- name: VIDEO_RECORDING_ENABLED
value: ${VIDEO_RECORDING_ENABLED}
image: ${ZALENIUM_IMAGE_NAME}
imagePullPolicy: IfNotPresent
name: zalenium
ports:
Expand Down

0 comments on commit e1a7601

Please sign in to comment.