Update helm charts with release docker artifacts
[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   readinessRepository: oomk8s
7   readinessImage: readiness-check:2.0.0
8
9
10 # application image
11 repository: nexus3.onap.org:10001
12 image: onap/aai-resources:1.2.1
13 pullPolicy: Always
14 restartPolicy: Always
15
16 # default number of instances
17 replicaCount: 1
18
19 # Configuration for the resources deployment
20 config:
21   userId: 1000
22   groupId: 1000
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   portName: aai-resources-8447
44   internalPort: 8447
45   portName2: aai-resources-5005
46   internalPort2: 5005
47
48
49 ingress:
50   enabled: false
51
52 resources: {}
53   # We usually recommend not to specify default resources and to leave this as a conscious
54   # choice for the user. This also increases chances charts run on environments with little
55   # resources, such as Minikube. If you do want to specify resources, uncomment the following
56   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
57   #
58   # Example:
59   # Configure resource requests and limits
60   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
61   # Minimum memory for development is 2 CPU cores and 4GB memory
62   # Minimum memory for production is 4 CPU cores and 8GB memory
63 #resources:
64 #  limits:
65 #    cpu: 2
66 #    memory: 4Gi
67 #  requests:
68 #    cpu: 2
69 #    memory: 4Gi