blob: 83bd1a9fad0fd09874ed8bb6af49e304abb911c0 [file] [log] [blame]
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00001# Copyright © 2018 Amdocs, Bell Canada, AT&T
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
kj6a8ce802018-03-19 15:07:44 +020015# Default values for traversal.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global: # global defaults
19 nodePortPrefix: 302
kj6a8ce802018-03-19 15:07:44 +020020 readinessRepository: oomk8s
BorislavGf2b49662018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
kj6a8ce802018-03-19 15:07:44 +020022
23
24# application image
25repository: nexus3.onap.org:10001
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040026image: onap/aai-traversal:1.3-STAGING-latest
kj6a8ce802018-03-19 15:07:44 +020027pullPolicy: Always
28restartPolicy: Always
rajeshkalai47c1de32018-09-20 06:36:28 -040029flavor: small
kj6a8ce802018-03-19 15:07:44 +020030# application configuration
31config:
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040032
33 # Specifies timeout information such as application specific and limits
34 timeout:
35 # If set to true application will timeout for queries taking longer than limit
36 enabled: true
37 # Specifies which apps (X-FromAppId) header should get overridden and (-1) no timeout
38 appspecific: JUNITTESTAPP1,1|JUNITTESTAPP2,-1|DCAE-CCS,-1|DCAES,-1|AAI-FILEGEN-GFPIP,-1
39 # Specifies how long should it wait before timing out the REST request
40 limit: 180000
41
42 # Disables the updateQueryData script to run as part of traversal
vagrant62ddc7d2018-03-10 23:56:32 +000043 disableUpdateQuery: true
kj6a8ce802018-03-19 15:07:44 +020044
vagrant62ddc7d2018-03-10 23:56:32 +000045persistence:
46 mountPath: /dockerdata-nfs
47 mountSubPath: aai/aai-traversal
kj6a8ce802018-03-19 15:07:44 +020048
49# default number of instances
50replicaCount: 1
51
52nodeSelector: {}
53
54affinity: {}
55
56# probe configuration parameters
57liveness:
58 initialDelaySeconds: 60
59 periodSeconds: 60
60 # necessary to disable liveness probe when setting breakpoints
61 # in debugger so K8s doesn't restart unresponsive container
62 enabled: false
63
64readiness:
65 initialDelaySeconds: 10
66 periodSeconds: 10
67
68service:
69 type: ClusterIP
BorislavG20dcf412018-05-13 17:11:01 +000070 portName: aai-traversal-8446
kj6a8ce802018-03-19 15:07:44 +020071 internalPort: 8446
BorislavG20dcf412018-05-13 17:11:01 +000072 portName2: aai-traversal-5005
kj6a8ce802018-03-19 15:07:44 +020073 internalPort2: 5005
74
75ingress:
76 enabled: false
77
kj6a8ce802018-03-19 15:07:44 +020078 # We usually recommend not to specify default resources and to leave this as a conscious
79 # choice for the user. This also increases chances charts run on environments with little
80 # resources, such as Minikube. If you do want to specify resources, uncomment the following
81 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
82 #
83 # Example:
84 # Configure resource requests and limits
85 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
86 # Minimum memory for development is 2 CPU cores and 4GB memory
87 # Minimum memory for production is 4 CPU cores and 8GB memory
88#resources:
89# limits:
90# cpu: 2
91# memory: 4Gi
92# requests:
93# cpu: 2
94# memory: 4Gi
rajeshkalai47c1de32018-09-20 06:36:28 -040095resources:
96 small:
97 limits:
98 cpu: 2
99 memory: 4Gi
100 requests:
101 cpu: 2
102 memory: 4Gi
103 large:
104 limits:
105 cpu: 4
106 memory: 8Gi
107 requests:
108 cpu: 4
109 memory: 8Gi