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