kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame^] | 1 | # Default values for data-router. |
| 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 | |
| 8 | |
| 9 | # application image |
| 10 | repository: nexus3.onap.org:10001 |
| 11 | image: onap/data-router:v1.1.0 |
| 12 | pullPolicy: Always |
| 13 | restartPolicy: Always |
| 14 | |
| 15 | # application configuration |
| 16 | config: |
| 17 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 18 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 19 | |
| 20 | |
| 21 | # default number of instances |
| 22 | replicaCount: 1 |
| 23 | |
| 24 | nodeSelector: {} |
| 25 | |
| 26 | affinity: {} |
| 27 | |
| 28 | # probe configuration parameters |
| 29 | liveness: |
| 30 | initialDelaySeconds: 10 |
| 31 | periodSeconds: 10 |
| 32 | # necessary to disable liveness probe when setting breakpoints |
| 33 | # in debugger so K8s doesn't restart unresponsive container |
| 34 | enabled: true |
| 35 | |
| 36 | readiness: |
| 37 | initialDelaySeconds: 10 |
| 38 | periodSeconds: 10 |
| 39 | |
| 40 | service: |
| 41 | name: aai-data-router |
| 42 | internalPort: 9502 |
| 43 | |
| 44 | ingress: |
| 45 | enabled: false |
| 46 | |
| 47 | persistence: |
| 48 | enabled: true |
| 49 | |
| 50 | ## A manually managed Persistent Volume and Claim |
| 51 | ## Requires persistence.enabled: true |
| 52 | ## If defined, PVC must be created manually before volume will be bound |
| 53 | # existingClaim: |
| 54 | volumeReclaimPolicy: Retain |
| 55 | |
| 56 | ## database data Persistent Volume Storage Class |
| 57 | ## If defined, storageClassName: <storageClass> |
| 58 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 59 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 60 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 61 | ## GKE, AWS & OpenStack) |
| 62 | ## |
| 63 | ## storageClass: "-" |
| 64 | accessMode: ReadWriteMany |
| 65 | size: 2Gi |
| 66 | mountPath: /dockerdata-nfs |
| 67 | mountSubPath: aai/data-router/logs |
| 68 | |
| 69 | resources: {} |
| 70 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 71 | # choice for the user. This also increases chances charts run on environments with little |
| 72 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 73 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 74 | # |
| 75 | # Example: |
| 76 | # Configure resource requests and limits |
| 77 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 78 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 79 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 80 | #resources: |
| 81 | # limits: |
| 82 | # cpu: 2 |
| 83 | # memory: 4Gi |
| 84 | # requests: |
| 85 | # cpu: 2 |
| 86 | # memory: 4Gi |