Merge "AAF Service Health Check"
[oom.git] / kubernetes / aai / charts / aai-modelloader / values.yaml
1 # Default values for modelloader.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6
7
8 # application image
9 repository: nexus3.onap.org:10001
10 image: onap/model-loader:1.2.1
11 pullPolicy: Always
12 restartPolicy: Always
13
14 # application configuration
15 config: {}
16
17 # default number of instances
18 replicaCount: 1
19
20 nodeSelector: {}
21
22 affinity: {}
23
24 # probe configuration parameters
25 liveness:
26   initialDelaySeconds: 10
27   periodSeconds: 10
28   # necessary to disable liveness probe when setting breakpoints
29   # in debugger so K8s doesn't restart unresponsive container
30   enabled: true
31
32 readiness:
33   initialDelaySeconds: 10
34   periodSeconds: 10
35
36 service:
37   type: NodePort
38   portName: aai-modelloader
39   externalPort: 8080
40   internalPort: 8080
41   nodePort: 10
42   portName2: aai-modelloader-ssl
43   externalPort2: 8443
44   internalPort2: 8443
45   nodePort2: 29
46
47 ingress:
48   enabled: false
49
50 resources: {}
51   # We usually recommend not to specify default resources and to leave this as a conscious
52   # choice for the user. This also increases chances charts run on environments with little
53   # resources, such as Minikube. If you do want to specify resources, uncomment the following
54   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
55   #
56   # Example:
57   # Configure resource requests and limits
58   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
59   # Minimum memory for development is 2 CPU cores and 4GB memory
60   # Minimum memory for production is 4 CPU cores and 8GB memory
61 #resources:
62 #  limits:
63 #    cpu: 2
64 #    memory: 4Gi
65 #  requests:
66 #    cpu: 2
67 #    memory: 4Gi