mirror of
https://github.com/helm/charts.git
synced 2026-08-20 04:47:32 +00:00
Fixes the format of the tolerations parameter. It was mistakenly set as a map, while Kubernetes expects an array. Signed-off-by: Alexandre Gattiker <algattik@users.noreply.github.com>
90 lines
1.9 KiB
YAML
90 lines
1.9 KiB
YAML
Name: locust
|
|
|
|
image:
|
|
repository: greenbirdit/locust
|
|
tag: 0.9.0
|
|
pullPolicy: IfNotPresent
|
|
pullSecrets: []
|
|
|
|
service:
|
|
name: master-web
|
|
type: NodePort
|
|
externalPort: 8089
|
|
internalPort: 8089
|
|
nodePort: 0
|
|
annotations: {}
|
|
extraLabels: {}
|
|
|
|
# extra volumes, volumeMounts and envs for both worker and master pods
|
|
extraVolumes: []
|
|
# extraVolumes:
|
|
# - name: mySecretVolume
|
|
# secret:
|
|
# secretName: mySecret
|
|
# - name: myConfigMapVolume
|
|
# configMap:
|
|
# name: myConfigMap
|
|
extraVolumeMounts: []
|
|
# extraVolumeMounts:
|
|
# - name: mySecretVolume
|
|
# mountPath: /locust/secrets/mySecretVolume/
|
|
extraEnvs: []
|
|
# extraEnvs:
|
|
# - name: HELLO
|
|
# value: WORLD
|
|
# - name: MY_SECRET
|
|
# valueFrom:
|
|
# secretKeyRef:
|
|
# name: mySecret
|
|
# key: mySecretKey
|
|
|
|
master:
|
|
config:
|
|
target-host: https://site.example.com
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
nodeSelector: {}
|
|
# kops.k8s.io/instancegroup: master
|
|
tolerations: []
|
|
# - key: "application"
|
|
# operator: "Equal"
|
|
# value: "api"
|
|
# effect: "NoSchedule"
|
|
worker:
|
|
config:
|
|
|
|
# Optional parameter to use an existing configmap instead of deploying one with the Chart
|
|
# configmapName: locust-worker-configs
|
|
|
|
# all files from specified configmap (or tasks folder) are mounted under `/locust-tasks`
|
|
locust-script: "/locust-tasks/tasks.py"
|
|
replicaCount: 2
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
nodeSelector: {}
|
|
# kops.k8s.io/instancegroup: worker
|
|
tolerations: []
|
|
# - key: "application"
|
|
# operator: "Equal"
|
|
# value: "api"
|
|
# effect: "NoSchedule"
|
|
#
|
|
#
|
|
affinity: {}
|
|
# podAntiAffinity:
|
|
# requiredDuringSchedulingIgnoredDuringExecution:
|
|
# - topologyKey: kubernetes.io/hostname
|
|
# labelSelector:
|
|
# matchLabels:
|
|
# component: worker
|