Dominic Lunanuova | 50aafc5 | 2018-03-30 02:29:23 +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 |
| 20 | repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ== |
| 21 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.0 |
Dominic Lunanuova | 50aafc5 | 2018-03-30 02:29:23 +0000 | [diff] [blame] | 23 | loggingRepository: docker.elastic.co |
| 24 | loggingImage: beats/filebeat:5.5.0 |
| 25 | postgresDatabase: dmaap |
| 26 | postgresUser: dmaap_admin |
| 27 | postgresPassword: onapdemodb |
| 28 | nsPrefix: onap |
| 29 | |
| 30 | |
| 31 | ################################################################# |
| 32 | # Application configuration defaults. |
| 33 | ################################################################# |
| 34 | #nsPrefix: onap |
| 35 | pullPolicy: Always |
| 36 | |
| 37 | # application images |
| 38 | repository: nexus3.onap.org:10001 |
| 39 | |
| 40 | image: |
| 41 | buscontrollerImage: onap/dmaap/buscontroller |
dglFromAtt | acf6848 | 2018-04-10 22:44:26 -0400 | [diff] [blame] | 42 | buscontrollerVersion: 1.0.5 |
Dominic Lunanuova | 50aafc5 | 2018-03-30 02:29:23 +0000 | [diff] [blame] | 43 | |
| 44 | |
| 45 | # application configuration |
| 46 | # Example: |
| 47 | config: |
| 48 | # username: myusername |
| 49 | # password: mypassword |
| 50 | dmaapMessageRouterService: dmaap |
| 51 | aafURL: https://onap-aaf:8905/proxy/ |
| 52 | topicMgrUser: m23456@dmaapbc.onap.org |
| 53 | topicMgrPwd: onapdemo |
| 54 | adminUser: m12345@dmaapbc.onap.org |
| 55 | adminPwd: onapdemo |
| 56 | |
| 57 | |
| 58 | |
| 59 | nodeSelector: {} |
| 60 | |
| 61 | affinity: {} |
| 62 | |
| 63 | # probe configuration parameters |
| 64 | liveness: |
| 65 | initialDelaySeconds: 10 |
| 66 | periodSeconds: 10 |
| 67 | # necessary to disable liveness probe when setting breakpoints |
| 68 | # in debugger so K8s doesn't restart unresponsive container |
| 69 | enabled: true |
| 70 | |
| 71 | readiness: |
| 72 | initialDelaySeconds: 10 |
| 73 | periodSeconds: 10 |
| 74 | |
| 75 | buscontroller: |
| 76 | service: prov-api |
| 77 | type: NodePort |
| 78 | name: buscontroller |
| 79 | httpExternalPort: 8080 |
| 80 | httpsExternalPort: 8443 |
| 81 | httpPort: 42 |
| 82 | httpsPort: 43 |
| 83 | # default number of instances |
| 84 | replicas: 1 |
| 85 | # flag to enable debugging - application support required |
| 86 | debugEnabled: false |
| 87 | |
| 88 | service: |
| 89 | #Example service definition with external, internal and node ports. |
| 90 | #Services may use any combination of ports depending on the 'type' of |
| 91 | #service being defined. |
| 92 | type: NodePort |
| 93 | name: <onap-app> |
| 94 | externalPort: <8080> |
| 95 | internalPort: <80> |
| 96 | nodePort: <replace with unused node port suffix eg. 23> |
| 97 | |
| 98 | ingress: |
| 99 | enabled: false |
| 100 | |
| 101 | resources: {} |
| 102 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 103 | # choice for the user. This also increases chances charts run on environments with little |
| 104 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 105 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 106 | # |
| 107 | # Example: |
| 108 | # Configure resource requests and limits |
| 109 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 110 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 111 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 112 | #resources: |
| 113 | # limits: |
| 114 | # cpu: 2 |
| 115 | # memory: 4Gi |
| 116 | # requests: |
| 117 | # cpu: 2 |
| 118 | # memory: 4Gi |