Update helm charts with release docker artifacts
[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   name: aai-modelloader
39   externalPort: 8080
40   internalPort: 8080
41   nodePort: 10
42   externalPort2: 8443
43   internalPort2: 8443
44   nodePort2: 29
45
46 ingress:
47   enabled: false
48
49 resources: {}
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