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