vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 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 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefix: 302 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 20 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.0 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 22 | loggingRepository: docker.elastic.co |
| 23 | loggingImage: beats/filebeat:5.5.0 |
jmac | 99ff397 | 2018-03-29 01:02:42 +0000 | [diff] [blame] | 24 | persistence: |
| 25 | mountPath: /dockerdata-nfs |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 26 | |
| 27 | ################################################################# |
| 28 | # Application configuration defaults. |
| 29 | ################################################################# |
| 30 | # application image |
| 31 | repository: nexus3.onap.org:10001 |
| 32 | image: onap/appc-image:1.3.0-SNAPSHOT-latest |
kerenj | 6ca15a7 | 2017-08-23 12:05:23 +0000 | [diff] [blame] | 33 | pullPolicy: Always |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 34 | |
| 35 | # flag to enable debugging - application support required |
| 36 | debugEnabled: false |
| 37 | |
| 38 | # application configuration |
| 39 | config: |
| 40 | dbRootPassword: openECOMP1.0 |
| 41 | enableClustering: true |
| 42 | configDir: /opt/onap/appc/data/properties |
| 43 | dmaapTopic: SUCCESS |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 44 | logstashServiceName: log-ls |
| 45 | logstashPort: 5044 |
Aaron Hay | ef1a0ec | 2018-04-30 01:25:41 -0400 | [diff] [blame] | 46 | openStackType: OpenStackProvider |
| 47 | openStackName: OpenStack |
| 48 | openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html |
| 49 | openStackServiceTenantName: default |
| 50 | openStackDomain: default |
| 51 | openStackUserName: admin |
| 52 | openStackEncryptedPassword: admin |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 53 | |
| 54 | mysql: |
| 55 | nameOverride: appc-db |
| 56 | service: |
| 57 | name: appc-dbhost |
| 58 | nfsprovisionerPrefix: appc |
| 59 | sdnctlPrefix: appc |
| 60 | persistence: |
| 61 | mountSubPath: appc/data |
| 62 | enabled: true |
| 63 | disableNfsProvisioner: true |
| 64 | |
| 65 | dgbuilder: |
| 66 | nameOverride: appc-dgbuilder |
jmac | 99ff397 | 2018-03-29 01:02:42 +0000 | [diff] [blame] | 67 | config: |
| 68 | dbPodName: appc-db |
| 69 | dbServiceName: appc-dbhost |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 70 | service: |
| 71 | name: appc-dgbuilder |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 72 | |
| 73 | # default number of instances |
Roger Maitland | 6a06997 | 2018-05-09 18:23:58 -0400 | [diff] [blame] | 74 | replicaCount: 1 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 75 | |
| 76 | nodeSelector: {} |
| 77 | |
| 78 | affinity: {} |
| 79 | |
| 80 | # probe configuration parameters |
| 81 | liveness: |
| 82 | initialDelaySeconds: 10 |
| 83 | periodSeconds: 10 |
| 84 | # necessary to disable liveness probe when setting breakpoints |
| 85 | # in debugger so K8s doesn't restart unresponsive container |
| 86 | enabled: true |
| 87 | |
| 88 | readiness: |
| 89 | initialDelaySeconds: 10 |
| 90 | periodSeconds: 10 |
| 91 | |
| 92 | service: |
| 93 | type: NodePort |
| 94 | name: appc |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 95 | portName: appc |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 96 | #targetPort |
| 97 | internalPort: 8181 |
| 98 | #port |
| 99 | externalPort: 8282 |
| 100 | nodePort: 30 |
| 101 | |
| 102 | externalPort2: 1830 |
| 103 | nodePort2: 31 |
| 104 | clusterPort: 2550 |
| 105 | |
Patrick Brady | 140deb9 | 2018-05-23 08:56:24 -0700 | [diff] [blame] | 106 | internalPort3: 9191 |
| 107 | externalPort3: 9090 |
Mike Elliott | fc816f6 | 2018-05-30 16:30:46 -0400 | [diff] [blame^] | 108 | nodePort3: 11 |
Patrick Brady | 140deb9 | 2018-05-23 08:56:24 -0700 | [diff] [blame] | 109 | |
BorislavG | 3dad2f4 | 2018-04-16 10:19:45 +0000 | [diff] [blame] | 110 | ## Persist data to a persitent volume |
| 111 | persistence: |
| 112 | enabled: true |
| 113 | |
| 114 | ## A manually managed Persistent Volume and Claim |
| 115 | ## Requires persistence.enabled: true |
| 116 | ## If defined, PVC must be created manually before volume will be bound |
| 117 | # existingClaim: |
| 118 | volumeReclaimPolicy: Retain |
| 119 | |
| 120 | ## database data Persistent Volume Storage Class |
| 121 | ## If defined, storageClassName: <storageClass> |
| 122 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 123 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 124 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 125 | ## GKE, AWS & OpenStack) |
| 126 | accessMode: ReadWriteOnce |
| 127 | size: 1Gi |
| 128 | mountPath: /dockerdata-nfs |
| 129 | mountSubPath: appc/mdsal |
| 130 | mdsalPath: /opt/opendaylight/current/daexim |
| 131 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 132 | ingress: |
| 133 | enabled: false |
| 134 | |
| 135 | resources: {} |
| 136 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 137 | # choice for the user. This also increases chances charts run on environments with little |
| 138 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 139 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 140 | # |
| 141 | # Example: |
| 142 | # Configure resource requests and limits |
| 143 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 144 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 145 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 146 | #resources: |
| 147 | # limits: |
| 148 | # cpu: 2 |
| 149 | # memory: 4Gi |
| 150 | # requests: |
| 151 | # cpu: 2 |
| 152 | # memory: 4Gi |