toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 1 | # 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 | |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 15 | # Default values for traversal. |
| 16 | # This is a YAML-formatted file. |
| 17 | # Declare variables to be passed into your templates. |
| 18 | global: # global defaults |
| 19 | nodePortPrefix: 302 |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 20 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.0 |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 22 | |
| 23 | |
| 24 | # application image |
| 25 | repository: nexus3.onap.org:10001 |
Jimmy Forsyth | 033559e | 2018-06-05 16:17:14 -0400 | [diff] [blame] | 26 | image: onap/aai-traversal:1.2.2 |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 27 | pullPolicy: Always |
| 28 | restartPolicy: Always |
| 29 | |
| 30 | # application configuration |
| 31 | config: |
| 32 | aaicoreversion: 1.1.0-SNAPSHOT |
vagrant | 1a3a355 | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 33 | userId: 1000 |
| 34 | groupId: 1000 |
| 35 | disableUpdateQuery: true |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 36 | |
vagrant | 1a3a355 | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 37 | persistence: |
| 38 | mountPath: /dockerdata-nfs |
| 39 | mountSubPath: aai/aai-traversal |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 40 | |
| 41 | # default number of instances |
| 42 | replicaCount: 1 |
| 43 | |
| 44 | nodeSelector: {} |
| 45 | |
| 46 | affinity: {} |
| 47 | |
| 48 | # probe configuration parameters |
| 49 | liveness: |
| 50 | initialDelaySeconds: 60 |
| 51 | periodSeconds: 60 |
| 52 | # necessary to disable liveness probe when setting breakpoints |
| 53 | # in debugger so K8s doesn't restart unresponsive container |
| 54 | enabled: false |
| 55 | |
| 56 | readiness: |
| 57 | initialDelaySeconds: 10 |
| 58 | periodSeconds: 10 |
| 59 | |
| 60 | service: |
| 61 | type: ClusterIP |
BorislavG | 26b650f | 2018-05-13 17:11:01 +0000 | [diff] [blame] | 62 | portName: aai-traversal-8446 |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 63 | internalPort: 8446 |
BorislavG | 26b650f | 2018-05-13 17:11:01 +0000 | [diff] [blame] | 64 | portName2: aai-traversal-5005 |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 65 | internalPort2: 5005 |
| 66 | |
| 67 | ingress: |
| 68 | enabled: false |
| 69 | |
| 70 | resources: {} |
| 71 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 72 | # choice for the user. This also increases chances charts run on environments with little |
| 73 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 74 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 75 | # |
| 76 | # Example: |
| 77 | # Configure resource requests and limits |
| 78 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 79 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 80 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 81 | #resources: |
| 82 | # limits: |
| 83 | # cpu: 2 |
| 84 | # memory: 4Gi |
| 85 | # requests: |
| 86 | # cpu: 2 |
| 87 | # memory: 4Gi |