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