mirror of
https://github.com/helm/charts.git
synced 2026-08-19 20:37:05 +00:00
* Adds Distributed JMeter chart: - Creates deployment resource for the JMeter master and server - Creates service resource for JMeter server Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Fix blank space. Adds some documentation as well. Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Added Documentation to the chart! - Adds a better README file - Also creates a NOTES.txt with instructionto run the tests - Changed logic to pull Docker image Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Fix blank spaces Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Applying changes Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Fix app version Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Use 1.0.0 for a start since we are stable Signed-off-by: Reinhard Nägele <unguiculus@gmail.com> * Add role label to service Signed-off-by: Reinhard Nägele <unguiculus@gmail.com> * Fixed labels and templates definitions. Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com> * Replaced role label Signed-off-by: Pedro César de Azevedo <pedrocesar.ti@gmail.com>
25 lines
665 B
YAML
25 lines
665 B
YAML
# Default values for distributed-jmeter.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
master:
|
|
## The number of pods in the master deployment
|
|
replicaCount: 1
|
|
|
|
server:
|
|
## The number of pods in the server deployment
|
|
replicaCount: 3
|
|
|
|
image:
|
|
## Specify an imagePullPolicy
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
pullPolicy: IfNotPresent
|
|
|
|
## The repository and image
|
|
## ref: https://hub.docker.com/r/pedrocesarti/jmeter-docker/
|
|
repository: "pedrocesarti/jmeter-docker"
|
|
|
|
## The tag for the image
|
|
## ref: https://hub.docker.com/r/pedrocesarti/jmeter-docker/tags/
|
|
tag: 3.3
|