blob: a5095ade51dcee3c4b6edfaee38fcf79234c47ef [file] [log] [blame]
kj9bf27312018-03-19 15:07:44 +02001# Default values for modelloader.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
kj9bf27312018-03-19 15:07:44 +02006
7
8# application image
9repository: nexus3.onap.org:10001
Keren Joseph822893d2018-04-17 09:54:11 +030010image: onap/model-loader:1.2-STAGING-latest
kj9bf27312018-03-19 15:07:44 +020011pullPolicy: Always
12restartPolicy: Always
13
14# application configuration
15config: {}
16
17# default number of instances
18replicaCount: 1
19
20nodeSelector: {}
21
22affinity: {}
23
24# probe configuration parameters
25liveness:
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
32readiness:
33 initialDelaySeconds: 10
34 periodSeconds: 10
35
36service:
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
46ingress:
47 enabled: false
48
49resources: {}
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