Merge "Added MSB and Chart definitions sections."
[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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8
9 # application image
10 repository: nexus3.onap.org:10001
11 image: onap/model-loader:v1.1.0
12 pullPolicy: Always
13 restartPolicy: Always
14
15 # application configuration
16 config: {}
17
18 # default number of instances
19 replicaCount: 1
20
21 nodeSelector: {}
22
23 affinity: {}
24
25 # probe configuration parameters
26 liveness:
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
33 readiness:
34   initialDelaySeconds: 10
35   periodSeconds: 10
36
37 service:
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
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