Merge "AAF Service Health Check"
[oom.git] / kubernetes / msb / charts / msb-iag / values.yaml
1 #################################################################
2 # Global configuration defaults.
3 #################################################################
4 global:
5   nodePortPrefix: 302
6   readinessRepository: oomk8s
7   readinessImage: readiness-check:2.0.0
8
9 #################################################################
10 # Application configuration defaults.
11 #################################################################
12 # application image
13 repository: nexus3.onap.org:10001
14 image: onap/msb/msb_apigateway:1.2.0-SNAPSHOT-latest
15 pullPolicy: Always
16 istioSidecar: true
17
18 # application configuration
19 config:
20   routeLabels: "visualRange:1"
21
22 # default number of instances
23 replicaCount: 1
24
25 nodeSelector: {}
26
27 affinity: {}
28
29 # probe configuration parameters
30 liveness:
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
37 readiness:
38   initialDelaySeconds: 10
39   periodSeconds: 10
40
41 service:
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
51 ingress:
52   enabled: false
53
54 resources: {}
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