BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 3 | # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved. |
Durgpal | 7ad4069 | 2018-08-03 07:28:36 +0000 | [diff] [blame] | 4 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
Jack Lucas | d12a1b6 | 2021-01-11 12:46:33 -0500 | [diff] [blame] | 5 | # Copyright (c) 2020-2021 J. F. Lucas. All rights reserved. |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | ################################################################# |
| 21 | # Global configuration defaults. |
| 22 | ################################################################# |
| 23 | global: |
| 24 | nodePortPrefix: 302 |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 25 | persistence: {} |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 26 | tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0 |
Jack Lucas | d263e69 | 2021-08-16 16:02:23 -0400 | [diff] [blame] | 27 | consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1 |
BorislavG | 254272e | 2018-05-09 14:34:14 +0000 | [diff] [blame] | 28 | repositoryCred: |
| 29 | user: docker |
| 30 | password: docker |
Jan Malkiewicz | 1f21b6e | 2021-02-22 15:40:00 +0100 | [diff] [blame] | 31 | |
| 32 | cmpv2issuer: |
| 33 | name: cmpv2-issuer-onap |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 34 | |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 35 | secrets: |
| 36 | - uid: 'cm-pass' |
| 37 | type: password |
| 38 | externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}' |
| 39 | password: '{{ .Values.config.cloudifyManagerPassword }}' |
| 40 | policy: required |
| 41 | |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 42 | config: |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 43 | cloudifyManagerPassword: "override me" |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 44 | logstashServiceName: log-ls |
| 45 | logstashPort: 5044 |
| 46 | # Addresses of other ONAP entities |
| 47 | address: |
| 48 | consul: |
| 49 | host: consul-server |
| 50 | port: 8500 |
| 51 | |
| 52 | ################################################################# |
| 53 | # Application configuration defaults. |
| 54 | ################################################################# |
| 55 | # application image |
Vijay Venkatesh Kumar | a54781b | 2021-09-01 17:04:37 -0400 | [diff] [blame] | 56 | image: onap/org.onap.dcaegen2.deployments.cm-container:4.6.1 |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 57 | pullPolicy: Always |
| 58 | |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 59 | # name of shared ConfigMap with kubeconfig for multiple clusters |
| 60 | multisiteConfigMapName: multisite-kubeconfig-configmap |
| 61 | |
| 62 | # image for init container to initialize shared ConfigMap |
Vijay Venkatesh Kumar | 6ef010c | 2019-05-01 18:41:35 +0000 | [diff] [blame] | 63 | multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0 |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 64 | |
Jack Lucas | 128c0ad | 2019-09-04 15:44:33 -0400 | [diff] [blame] | 65 | # image for cleanup job container |
| 66 | cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0 |
| 67 | |
Jack Lucas | d12a1b6 | 2021-01-11 12:46:33 -0500 | [diff] [blame] | 68 | # default location for k8s deployments via Cloudify |
| 69 | default_k8s_location: central |
| 70 | |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 71 | # probe configuration parameters |
| 72 | liveness: |
| 73 | initialDelaySeconds: 10 |
| 74 | periodSeconds: 10 |
Jack Lucas | 089cd9d | 2020-09-30 12:24:20 -0400 | [diff] [blame] | 75 | timeoutSeconds: 5 |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 76 | # necessary to disable liveness probe when setting breakpoints |
| 77 | # in debugger so K8s doesn't restart unresponsive container |
Jack Lucas | 7586f97 | 2018-10-31 13:47:16 -0400 | [diff] [blame] | 78 | # liveness not desirable for Cloudify Manager container |
| 79 | enabled: false |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 80 | |
| 81 | readiness: |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 82 | initialDelaySeconds: 60 |
Jack Lucas | 089cd9d | 2020-09-30 12:24:20 -0400 | [diff] [blame] | 83 | # In some environments we see CM coming up |
| 84 | # properly but readiness probe timing out. |
| 85 | # Increasing the timeout and adjusting the |
| 86 | # period so it's longer than the timeout. |
| 87 | # (DCAEGEN2-2465) |
| 88 | periodSeconds: 30 |
| 89 | timeoutSeconds: 10 |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 90 | |
| 91 | service: |
| 92 | type: ClusterIP |
| 93 | name: dcae-cloudify-manager |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 94 | externalPort: 443 |
| 95 | internalPort: 443 |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 96 | |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 97 | # Resource Limit flavor -By Default using small |
| 98 | flavor: small |
| 99 | # Segregation for Different environment (Small and Large) |
Jack Lucas | ab19289 | 2020-10-06 12:01:59 -0400 | [diff] [blame] | 100 | # Due to memory issues in ONAP integration environment, |
| 101 | # we've increased the memory amounts for both flavors. |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 102 | resources: |
| 103 | small: |
| 104 | limits: |
| 105 | cpu: 2 |
Jack Lucas | ab19289 | 2020-10-06 12:01:59 -0400 | [diff] [blame] | 106 | memory: 4Gi |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 107 | requests: |
| 108 | cpu: 1 |
Jack Lucas | ab19289 | 2020-10-06 12:01:59 -0400 | [diff] [blame] | 109 | memory: 2Gi |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 110 | large: |
| 111 | limits: |
| 112 | cpu: 4 |
Jack Lucas | ab19289 | 2020-10-06 12:01:59 -0400 | [diff] [blame] | 113 | memory: 8Gi |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 114 | requests: |
| 115 | cpu: 2 |
Jack Lucas | ab19289 | 2020-10-06 12:01:59 -0400 | [diff] [blame] | 116 | memory: 4Gi |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 117 | unlimited: {} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 118 | # Kubernetes namespace for components deployed via Cloudify manager |
| 119 | # If empty, use the common namespace |
Lusheng Ji | 98f947e | 2018-04-30 12:03:37 -0400 | [diff] [blame] | 120 | # dcae_ns: "dcae" |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 121 | |
| 122 | # Parameters for persistent storage |
| 123 | persistence: |
| 124 | enabled: true |
| 125 | accessMode: ReadWriteOnce |
| 126 | size: 4Gi |
| 127 | mountPath: /dockerdata-nfs |
| 128 | mountSubPath: dcae-cm/data |
Sylvain Desbureaux | 03c36f9 | 2019-11-29 15:22:29 +0100 | [diff] [blame] | 129 | volumeReclaimPolicy: Retain |
farida azmy | 3748180 | 2021-04-11 15:41:32 +0200 | [diff] [blame] | 130 | |
| 131 | #Pods Service Account |
| 132 | serviceAccount: |
| 133 | nameOverride: dcae-cloudify-manager |
| 134 | roles: |
| 135 | - create |
| 136 | |