blob: 28b271e54aff0b38154d492f82a42dc1325c87cf [file] [log] [blame]
kj6a8ce802018-03-19 15:07:44 +02001# Default values for resources.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
kj6a8ce802018-03-19 15:07:44 +02006 readinessRepository: oomk8s
BorislavGf2b49662018-04-15 11:55:39 +00007 readinessImage: readiness-check:2.0.0
kj6a8ce802018-03-19 15:07:44 +02008
9
10# application image
11repository: nexus3.onap.org:10001
Jimmy Forsythef106982018-06-05 16:17:14 -040012image: onap/aai-resources:1.2.2
kj6a8ce802018-03-19 15:07:44 +020013pullPolicy: Always
14restartPolicy: Always
15
kj6a8ce802018-03-19 15:07:44 +020016# default number of instances
17replicaCount: 1
18
vagrant62ddc7d2018-03-10 23:56:32 +000019# Configuration for the resources deployment
20config:
21 userId: 1000
22 groupId: 1000
23
kj6a8ce802018-03-19 15:07:44 +020024nodeSelector: {}
25
26affinity: {}
27
28# probe configuration parameters
29liveness:
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
36readiness:
37 initialDelaySeconds: 60
38 periodSeconds: 10
39
40
41service:
42 type: ClusterIP
BorislavG20dcf412018-05-13 17:11:01 +000043 portName: aai-resources-8447
kj6a8ce802018-03-19 15:07:44 +020044 internalPort: 8447
BorislavG20dcf412018-05-13 17:11:01 +000045 portName2: aai-resources-5005
kj6a8ce802018-03-19 15:07:44 +020046 internalPort2: 5005
47
48
49ingress:
50 enabled: false
51
52resources: {}
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