blob: 0c7a508dc4f7d61be546ec51043f945b1e32bdc0 [file] [log] [blame]
BorislavG0433c912018-03-21 18:35:30 +02001#################################################################
2# Global configuration defaults.
3#################################################################
4global:
5 nodePortPrefix: 302
BorislavG0433c912018-03-21 18:35:30 +02006
7#################################################################
8# Application configuration defaults.
9#################################################################
10# application image
11dockerHubRepository: registry.hub.docker.com
12image: library/consul:0.9.3
13pullPolicy: Always
14
15# application configuration
16config: {}
17
18# default number of instances
19replicaCount: 1
20
21nodeSelector: {}
22
23affinity: {}
24
25# probe configuration parameters
26liveness:
27 initialDelaySeconds: 10
28 periodSeconds: 10
29 # necessary to disable liveness probe when setting breakpoints
30 # in debugger so K8s doesn't restart unresponsive container
31 enabled: true
32
33readiness:
34 initialDelaySeconds: 10
35 periodSeconds: 10
36
37service:
38 type: NodePort
39 name: msb-consul
40 externalPort: 8500
41 internalPort: 8500
42 nodePort: 85
43
44ingress:
45 enabled: false
46
47resources: {}
48 # We usually recommend not to specify default resources and to leave this as a conscious
49 # choice for the user. This also increases chances charts run on environments with little
50 # resources, such as Minikube. If you do want to specify resources, uncomment the following
51 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
52 #
53 # Example:
54 # Configure resource requests and limits
55 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
56 # Minimum memory for development is 2 CPU cores and 4GB memory
57 # Minimum memory for production is 4 CPU cores and 8GB memory
58#resources:
59# limits:
60# cpu: 2
61# memory: 4Gi
62# requests:
63# cpu: 2
64# memory: 4Gi