-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
87 lines (80 loc) · 2.35 KB
/
values.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
## Reaction Commerce standard image version
## ref: https://hub.docker.com/r/reactioncommerce/reaction/tags/
##
image: reactioncommerce/reaction:v1.5.10
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
# imagePullPolicy:
## Host for the application
##
# host:
# Main ReactionCommerce configuration:
config:
#Admin login information
REACTION_EMAIL:
REACTION_USER:
REACTION_AUTH:
#Set to DEBUG as necessary
REACTION_LOG_LEVEL:
#Set here to override UI if necessary
SMTP_Host:
SMTP_Port:
SMTP_Username:
SMTP_Password:
##
## MongoDB chart configuration
##
mongodb:
## MongoDB admin password
### ref: https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#setting-the-root-password-on-first-run
###
## mongodbRootPassword:
#
## MongoDB custom user and database
## ref: https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#creating-a-user-and-database-on-first-run
##
# mongodbUsername:
# mongodbPassword:
# mongodbDatabase:
## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
##
persistence:
enabled: true
## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
##
# storageClass:
accessMode: ReadWriteOnce
size: 8Gi
# ## Enable persistence using Persistent Volume Claims
# ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
# ##
# persistence:
# enabled: true
# ## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
# ##
# # storageClass:
# accessMode: ReadWriteOnce
# size: 8Gi
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
# resources:
# requests:
# memory: 512Mi
# cpu: 300m
## Configure the ingress object to hook into existing infastructure
### ref : http://kubernetes.io/docs/user-guide/ingress/
###
ingress:
enabled: false
tls: false
annotations:
kubernetes.io/ingress.class: "nginx"
# ingress.kubernetes.io/ssl-redirect: "true"
# ingress.kubernetes.io/proxy-body-size: "0"
# ingress.kubernetes.io/proxy-read-timeout: "600"
# ingress.kubernetes.io/proxy-send-timeout: "600"
# ingress.kubernetes.io/proxy-buffer-size: "128k"