blob: 17640338d1bbaffc82f64d0bc5171579dcf08232 [file] [log] [blame]
kj9bf27312018-03-19 15:07:44 +02001# Default values for traversal.
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
8 readinessImage: readiness-check:1.1.0
9
10
11# application image
12repository: nexus3.onap.org:10001
13image: openecomp/aai-traversal:v1.1.0
14pullPolicy: Always
15restartPolicy: Always
16
17# application configuration
18config:
19 aaicoreversion: 1.1.0-SNAPSHOT
20
21
22# default number of instances
23replicaCount: 1
24
25nodeSelector: {}
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: 10
39 periodSeconds: 10
40
41service:
42 type: ClusterIP
43 name: aai-traversal
44 internalPort: 8446
45 internalPort2: 5005
46
47ingress:
48 enabled: false
49
50resources: {}
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