Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 1 | # Copyright © 2018 AT&T Intellectual Property. All rights reserved. |
| 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 | |
| 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefix: 302 |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 20 | readinessRepository: oomk8s |
Gary Wu | bf4b4d8 | 2018-05-11 13:26:30 -0700 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.0 |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 22 | loggingRepository: docker.elastic.co |
| 23 | loggingImage: beats/filebeat:5.5.0 |
| 24 | |
| 25 | ################################################################# |
| 26 | # Application configuration defaults. |
| 27 | ################################################################# |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 28 | pullPolicy: Always |
| 29 | |
| 30 | # application images |
| 31 | repository: nexus3.onap.org:10001 |
| 32 | |
Gary Wu | c15fcdd | 2018-06-05 13:16:55 -0700 | [diff] [blame^] | 33 | image: onap/dmaap/buscontroller:1.0.12 |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 34 | |
| 35 | |
| 36 | # application configuration |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 37 | dmaapMessageRouterService: message-router |
| 38 | aafURL: https://aaf-authz/ |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 39 | topicMgrUser: m23456@dmaapbc.onap.org |
| 40 | topicMgrPwd: onapdemo |
| 41 | adminUser: m12345@dmaapbc.onap.org |
| 42 | adminPwd: onapdemo |
| 43 | |
| 44 | nodeSelector: {} |
| 45 | |
| 46 | affinity: {} |
| 47 | |
| 48 | # probe configuration parameters |
| 49 | liveness: |
| 50 | initialDelaySeconds: 10 |
| 51 | periodSeconds: 10 |
| 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 | |
| 61 | service: |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 62 | type: NodePort |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 63 | name: dmaap-bc |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 64 | portName: dmaap-bc |
| 65 | portName2: dmaap-bc |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 66 | externalPort: 8080 |
| 67 | internalPort: 8080 |
| 68 | externalPort2: 8443 |
| 69 | internalPort2: 8443 |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 70 | nodePort: 41 |
| 71 | nodePort2: 42 |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 72 | |
| 73 | |
| 74 | # application configuration override for postgres |
| 75 | postgres: |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 76 | nameOverride: dbc-pg |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 77 | service: |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 78 | name: dbc-postgres |
| 79 | name2: dbc-pg-primary |
| 80 | name3: dbc-pg-replica |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 81 | container: |
| 82 | name: |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 83 | primary: dbc-pg-primary |
| 84 | replica: dbc-pg-replica |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 85 | config: |
| 86 | pgUserName: dmaap_admin |
| 87 | pgDatabase: dmaap |
| 88 | pgPrimaryPassword: onapdemodb |
| 89 | pgUserPassword: onapdemodb |
| 90 | pgRootPassword: onapdemodb |
Dominic Lunanuova | 1ba2b25 | 2018-04-30 19:01:31 +0000 | [diff] [blame] | 91 | persistence: |
| 92 | mountSubPath: dbc/data |
| 93 | mountInitPath: dbc |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 94 | |
| 95 | ingress: |
| 96 | enabled: false |
| 97 | |
| 98 | resources: {} |
| 99 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 100 | # choice for the user. This also increases chances charts run on environments with little |
| 101 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 102 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 103 | # |
| 104 | # Example: |
| 105 | # Configure resource requests and limits |
| 106 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 107 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 108 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 109 | #resources: |
| 110 | # limits: |
| 111 | # cpu: 2 |
| 112 | # memory: 4Gi |
| 113 | # requests: |
| 114 | # cpu: 2 |
| 115 | # memory: 4Gi |