blob: 8acb28f9d2859f2ded7bab981d2468626f6f3239 [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
Jimmy Forsyth594c2fd2018-05-30 17:40:40 -040010image: onap/model-loader:1.2.1
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
BorislavG2d4426e2018-05-22 11:31:39 +000038 portName: aai-modelloader
kj9bf27312018-03-19 15:07:44 +020039 externalPort: 8080
40 internalPort: 8080
41 nodePort: 10
BorislavG2d4426e2018-05-22 11:31:39 +000042 portName2: aai-modelloader-ssl
kj9bf27312018-03-19 15:07:44 +020043 externalPort2: 8443
44 internalPort2: 8443
45 nodePort2: 29
46
47ingress:
48 enabled: false
49
50resources: {}
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