forked from Neotys-Labs/helm-neoload-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-eks-values-custom.yaml
69 lines (63 loc) · 2.04 KB
/
my-eks-values-custom.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
### ReplicaSet configuration
replicaCount:
frontend: 2
backend: 2
### NLWeb configuration
neoload:
configuration:
# The secret key must be at least 8 characters long
secretKey: mysecretsecretkey
backend:
mongo:
host: mongo-mongodb
port: 27017
# Enable licensing features (VUHs) by setting this token, or leave it empty
licensingPlatformToken:
securityContext:
runAsUser: 2000
### MongoDB user configuration
mongodb:
usePassword: true
mongodbUsername: root
mongodbPassword: root
### Services host configuration
services:
webapp:
host: neoload-web.argo.rd.neotys.eu
api:
host: neoload-web-api.argo.rd.neotys.eu
files:
host: neoload-web-files.argo.rd.neotys.eu
domain: .argo.rd.neotys.eu
### Ingress configuration
### Choose your preferred ingress controller configuration
ingress:
enabled: true
# Replace these annotations accordingly if you are not using the nginx ingress controller
annotations:
# nginx
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/force-ssl-redirect: "false"
nginx.ingress.kubernetes.io/rewrite-target: /
nginx.ingress.kubernetes.io/configuration-snippet: |
proxy_ignore_client_abort "on";
nginx.ingress.kubernetes.io/proxy-body-size: 0
# Enable sticky sessions for HA
# More parameters here : https://kubernetes.github.io/ingress-nginx/examples/affinity/cookie/
nginx.ingress.kubernetes.io/affinity: cookie
nginx.ingress.kubernetes.io/affinity-mode: persistent
nginx.ingress.kubernetes.io/session-cookie-max-age: 3600
nginx.ingress.kubernetes.io/session-cookie-change-on-failure: true
### TLS configuration
### Uncomment if you want to secure your app with https
# tls:
# - secretName: tls-secret
# secretCertificate: |-
# -----BEGIN CERTIFICATE-----
# YOUR_CERTIFICATE
# -----END CERTIFICATE-----
# secretKey: |-
# -----BEGIN PRIVATE KEY-----
# YOUR_PRIVATE_KEY
# -----END PRIVATE KEY-----