Merge "Added MSB and Chart definitions sections."
[oom.git] / kubernetes / aai / charts / aai-resources / values.yaml
1 # Default values for resources.
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   readinessRepository: oomk8s
8   readinessImage: readiness-check:1.1.0
9
10
11 # application image
12 repository: nexus3.onap.org:10001
13 image: openecomp/aai-resources:v1.1.0
14 pullPolicy: Always
15 restartPolicy: Always
16
17 # application configuration
18 config:
19   aaicoreversion: 1.1.0-SNAPSHOT
20
21 # default number of instances
22 replicaCount: 1
23
24 nodeSelector: {}
25
26 affinity: {}
27
28 # probe configuration parameters
29 liveness:
30   initialDelaySeconds: 60
31   periodSeconds: 60
32   # necessary to disable liveness probe when setting breakpoints
33   # in debugger so K8s doesn't restart unresponsive container
34   enabled: false
35
36 readiness:
37   initialDelaySeconds: 60
38   periodSeconds: 10
39
40
41 service:
42   type: ClusterIP
43   name: aai-resources
44   internalPort: 8447
45   internalPort2: 5005
46
47
48 ingress:
49   enabled: false
50
51 resources: {}
52   # We usually recommend not to specify default resources and to leave this as a conscious
53   # choice for the user. This also increases chances charts run on environments with little
54   # resources, such as Minikube. If you do want to specify resources, uncomment the following
55   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
56   #
57   # Example:
58   # Configure resource requests and limits
59   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
60   # Minimum memory for development is 2 CPU cores and 4GB memory
61   # Minimum memory for production is 4 CPU cores and 8GB memory
62 #resources:
63 #  limits:
64 #    cpu: 2
65 #    memory: 4Gi
66 #  requests:
67 #    cpu: 2
68 #    memory: 4Gi