blob: b7c02876d4c123f527bb56829063d718ba3eb6d1 [file] [log] [blame]
kj9bf27312018-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
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +00008 readinessImage: readiness-check:2.0.0
kj9bf27312018-03-19 15:07:44 +02009
10
11# application image
12repository: nexus3.onap.org:10001
vagrant1a3a3552018-03-10 23:56:32 +000013image: onap/aai-resources:1.2-STAGING-latest
kj9bf27312018-03-19 15:07:44 +020014pullPolicy: Always
15restartPolicy: Always
16
kj9bf27312018-03-19 15:07:44 +020017# default number of instances
18replicaCount: 1
19
vagrant1a3a3552018-03-10 23:56:32 +000020# Configuration for the resources deployment
21config:
22 userId: 1000
23 groupId: 1000
24
kj9bf27312018-03-19 15:07:44 +020025nodeSelector: {}
26
27affinity: {}
28
29# probe configuration parameters
30liveness:
31 initialDelaySeconds: 60
32 periodSeconds: 60
33 # necessary to disable liveness probe when setting breakpoints
34 # in debugger so K8s doesn't restart unresponsive container
35 enabled: false
36
37readiness:
38 initialDelaySeconds: 60
39 periodSeconds: 10
40
41
42service:
43 type: ClusterIP
44 name: aai-resources
45 internalPort: 8447
46 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