blob: 3c690ddef58da311b28f116dd0d8ccfef39af2b4 [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 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +00007 readinessImage: readiness-check:2.0.0
BorislavG0433c912018-03-21 18:35:30 +02008
9#################################################################
10# Application configuration defaults.
11#################################################################
12# application image
13repository: nexus3.onap.org:10001
Gary Wu46621662018-05-30 14:30:47 -070014image: onap/msb/msb_discovery:1.1.0
BorislavG0433c912018-03-21 18:35:30 +020015pullPolicy: Always
16
17# application configuration
18config: {}
19
20# default number of instances
21replicaCount: 1
22
23nodeSelector: {}
24
25affinity: {}
26
27# probe configuration parameters
28liveness:
29 initialDelaySeconds: 10
30 periodSeconds: 10
31 # necessary to disable liveness probe when setting breakpoints
32 # in debugger so K8s doesn't restart unresponsive container
33 enabled: true
34
35readiness:
36 initialDelaySeconds: 10
37 periodSeconds: 10
38
39service:
40 type: NodePort
41 name: msb-discovery
42 externalPort: 10081
43 internalPort: 10081
44 nodePort: 81
45
46ingress:
47 enabled: false
48
49resources: {}
50 # We usually recommend not to specify default resources and to leave this as a conscious
51 # choice for the user. This also increases chances charts run on environments with little
52 # resources, such as Minikube. If you do want to specify resources, uncomment the following
53 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
54 #
55 # Example:
56 # Configure resource requests and limits
57 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
58 # Minimum memory for development is 2 CPU cores and 4GB memory
59 # Minimum memory for production is 4 CPU cores and 8GB memory
60#resources:
61# limits:
62# cpu: 2
63# memory: 4Gi
64# requests:
65# cpu: 2
66# memory: 4Gi