blob: 885ee00d4f5c61dc7c05f31d8111eb09d04b23bb [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
Huabing Zhaoc4bc1142018-07-31 03:11:00 +000014image: onap/msb/msb_apigateway:1.2.0-SNAPSHOT-latest
BorislavG0433c912018-03-21 18:35:30 +020015pullPolicy: Always
Huabing Zhao81b89762018-07-30 06:33:03 +000016istioSidecar: true
BorislavG0433c912018-03-21 18:35:30 +020017
18# application configuration
19config:
20 routeLabels: "visualRange:1"
21
22# default number of instances
23replicaCount: 1
24
25nodeSelector: {}
26
27affinity: {}
28
29# probe configuration parameters
30liveness:
31 initialDelaySeconds: 10
32 periodSeconds: 10
33 # necessary to disable liveness probe when setting breakpoints
34 # in debugger so K8s doesn't restart unresponsive container
35 enabled: true
36
37readiness:
38 initialDelaySeconds: 10
39 periodSeconds: 10
40
41service:
42 type: NodePort
43 name: msb-iag
44 externalPort: 80
45 internalPort: 80
46 nodePort: 80
47 externalPortHttps: 443
48 internalPortHttps: 443
49 nodePortHttps: 83
50
51ingress:
52 enabled: false
53
54resources: {}
55 # We usually recommend not to specify default resources and to leave this as a conscious
56 # choice for the user. This also increases chances charts run on environments with little
57 # resources, such as Minikube. If you do want to specify resources, uncomment the following
58 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
59 #
60 # Example:
61 # Configure resource requests and limits
62 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
63 # Minimum memory for development is 2 CPU cores and 4GB memory
64 # Minimum memory for production is 4 CPU cores and 8GB memory
65#resources:
66# limits:
67# cpu: 2
68# memory: 4Gi
69# requests:
70# cpu: 2
71# memory: 4Gi