blob: db069d08c79a53c4cee5bd5d80e17bb6e5ca4398 [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
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8
9# application image
10repository: nexus3.onap.org:10001
Keren Joseph822893d2018-04-17 09:54:11 +030011image: onap/model-loader:1.2-STAGING-latest
kj9bf27312018-03-19 15:07:44 +020012pullPolicy: Always
13restartPolicy: Always
14
15# application configuration
16config: {}
17
18# default number of instances
19replicaCount: 1
20
21nodeSelector: {}
22
23affinity: {}
24
25# probe configuration parameters
26liveness:
27 initialDelaySeconds: 10
28 periodSeconds: 10
29 # necessary to disable liveness probe when setting breakpoints
30 # in debugger so K8s doesn't restart unresponsive container
31 enabled: true
32
33readiness:
34 initialDelaySeconds: 10
35 periodSeconds: 10
36
37service:
38 type: NodePort
39 name: aai-modelloader
40 externalPort: 8080
41 internalPort: 8080
42 nodePort: 10
43 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