summaryrefslogtreecommitdiffstats
path: root/kubernetes
AgeCommit message (Collapse)AuthorFilesLines
2019-11-08VNFM-adapter health check failingMichaelMorris2-3/+13
Configured the VNFM adapter to support https as is being used by the health check request Signed-off-by: MichaelMorris <michael.morris@est.tech> Issue-ID: SO-2517 Change-Id: I2076a02788c2f74b90939a9e3684f917079cf7b2
2019-11-07Attempt 2 at chart restructureUbuntu100-22/+80
Helm value override file now supports component-specific settings: dcae-bootstrap: enabled: true dcae-cloudify-manager: enabled: true dcae-config-binding-service: enabled: true dcae-healthcheck: enabled: true dcae-redis: enabled: true dcae-servicechange-handler: enabled: true dcae-inventory-api: enabled: true dcae-deployment-handler: enabled: true dcae-policy-handler: enabled: true dcae-dashboard: enabled: true Issue-ID: OOM-1574 Signed-off-by: Ubuntu <dgl@research.att.com> Change-Id: I85e0fe6ae19e176d954611549ec954a5fe662307 Signed-off-by: Ubuntu <dgl@research.att.com>
2019-11-07Merge "Fix the nginx config"Sylvain Desbureaux1-0/+2
2019-11-07Merge "NBI to SDC: API is HTTPS with port 8443"Morgan Richomme1-1/+1
2019-11-07Merge "Remove unused properties from config files"Sylvain Desbureaux1-7/+0
2019-11-06NBI to SDC: API is HTTPS with port 8443Matthieu Geerebaert1-1/+1
Issue-ID: EXTAPI-341 Signed-off-by: MatthieuGeerebaert <matthieu.geerebaert@orange.com> Change-Id: I94b41e338d80939934c7d42fd518d0984cf89b92
2019-11-06Update git submodulesbdfreeman14211-0/+0
* Update kubernetes/robot from branch 'master' to 5526182fa60a7a61c8158c98b6be8dfc66c8330b - Revert VNFM https Issue-ID: OOM-2163 Change-Id: Ib5d07e2ddecbe8cdaf6d5e3ac7ae195cf6d33db4 Signed-off-by: bdfreeman1421 <bf1936@att.com>
2019-11-06Merge "[Portal] Adjust Pods Requests/Limits"Borislav Glozman6-23/+23
2019-11-06Merge "add properties for username and password"Borislav Glozman1-0/+5
2019-11-06Merge "[CLAMP] set Mariadb PVC to RWO"Borislav Glozman1-1/+1
2019-11-06Merge "[LOG] Move Elasticsearch PVC to RWO"Borislav Glozman1-2/+2
2019-11-06Merge "[POMBA] Move Elasticsearch PVC to RWO"Borislav Glozman1-1/+1
2019-11-06Merge "[POMBA] Move Data Router logs PVC to RWO"Borislav Glozman1-2/+2
2019-11-06add properties for username and passwordShaaban Ebrahim1-0/+5
Issue-ID: OOM-2164 Signed-off-by: Shaaban Ebrahim <shaaban.eltanany.ext@orange.com> Change-Id: Iace0b322d5d1a02ca25c0791936b0fc1a1e950e3
2019-11-06[Portal] Adjust Pods Requests/LimitsSylvain Desbureaux6-23/+23
I've adjusted the Requests / Limits of portal pods according to real usage of "Orange Openlab" and "Onap daily master". Calculation is the following: per deployment: * CPU/Mem requests is max of average from the two deployments * CPU/Mem limits is (max of max from the two deployments) * 1.2 Moved portal-widget CPU limit to 1 as it's not starting if set to lower than that. Full values are available on jira ticket (https://jira.onap.org/browse/PORTAL-517). Change-Id: Ic02fef386e05351a6fa9e47bf47d5c2046f490e3 Issue-ID: PORTAL-517 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Signed-off-by: Lorraine Welch <lb2391@att.com>
2019-11-06Remove unused properties from config filesKrzysztof Opasiak1-7/+0
DB and auth credentials are never extracted from this file thus it's better to remove them to avoid confusion. Issue-ID: OOM-2051 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: I66b0cb61b17439496ed0e0c8d9529ad730823d61
2019-11-05[POMBA] Move Data Router logs PVC to RWOSylvain Desbureaux1-2/+2
Data Router pods writes logs directly in the PVC within generic name files: debian@control01-onap-master:~$ ls -l /dockerdata-nfs/onap-pomba/pomba/data-router/logs/application.log -rw-r--r-- 1 root root 125 Nov 5 09:56 /dockerdata-nfs/onap-pomba/pomba/data-router/logs/application.log debian@control01-onap-master:~$ ls -l /dockerdata-nfs/onap-pomba/pomba/data-router/logs/ total 4 drwxr-xr-x 2 root root 76 Nov 5 09:56 AAI-DR -rw-r--r-- 1 root root 125 Nov 5 09:56 application.log drwxr-xr-x 3 root root 18 Nov 5 09:54 data-router debian@control01-onap-master:~$ ls -l /dockerdata-nfs/onap-pomba/pomba/data-router/logs/data-router/ total 0 drwxrwxrwx 2 root root 6 Nov 5 09:54 logs debian@control01-onap-master:~$ ls -l /dockerdata-nfs/onap-pomba/pomba/data-router/logs/data-router/logs/ total 0 debian@control01-onap-master:~$ ls -l /dockerdata-nfs/onap-pomba/pomba/data-router/logs/AAI-DR/ total 12 -rw-r--r-- 1 root root 0 Nov 5 09:56 audit.log -rw-r--r-- 1 root root 0 Nov 5 09:56 debug.log -rw-r--r-- 1 root root 7519 Nov 5 09:56 error.log -rw-r--r-- 1 root root 666 Nov 5 09:56 metrics.log Thus if two pods were writing, there would be issue as each one would want to write. Then this PVC must be used by one POD only and RWO is sufficent Change-Id: I0087487fba715b4b0804de51544238f08fed1d3c Issue-ID: LOG-1114 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-11-05[POMBA] Move Elasticsearch PVC to RWOSylvain Desbureaux1-1/+1
Elasticsearch PVC is only used by elasticsearch POD. As ES doesn't support several writes per different instances on the same folder, RWO PVC is sufficient. Change-Id: I6b7c91174f4f485dc6e3b6e34111fe4fc2bb0469 Issue-ID: LOG-1114 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-11-05[LOG] Move Elasticsearch PVC to RWOSylvain Desbureaux1-2/+2
Elasticsearch PVC is only used by elasticsearch POD. As ES doesn't support several writes per different instances on the same folder, RWO PVC is sufficient Change-Id: Ie2cb4eadf8ee0c8ff1acf7e2ba172763c89583f3 Issue-ID: LOG-1114 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-11-05[APPC] Move Ansible server PVC to RWOSylvain Desbureaux1-3/+1
As ansible server is a statefulset with PVC template written in the statefulset, you'll have one PVC per ansible server. Thus ReadWriteMany (RWX) is not necessary and RWO is sufficient. Change-Id: I735891be2a098303ce85e21da7c8dc8b1ea20371 Issue-ID: APPC-1710 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-11-05[CLAMP] set Mariadb PVC to RWOSylvain Desbureaux1-1/+1
Forgot Mariadb PVC in previous commit (https://gerrit.onap.org/r/c/oom/+/94610). Change-Id: I9e3d96eab8b6d6ada7d2ab406a8e72249c909aa4 Issue-ID: CLAMP-488 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-10-31Update git submodulesKajur, Harish (vk250x)1-0/+0
* Update kubernetes/aai from branch 'master' to 81954e51ef4c04fb08182d779f4871dfca766221 - Update schema service to use v17 to v19 Issue-ID: AAI-2607 Change-Id: Ia49109e37af5092a5394d69a69dd9ad0fb14e2d7 Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
2019-10-30Merge "[NBI] Use mariadb-galera from common"Borislav Glozman13-431/+18
2019-10-30Merge "[Music] Adjust Pods Requests/Limits"Borislav Glozman6-26/+49
2019-10-29Merge "bump the SO version to 1.5.3"Brian Freeman10-10/+10
2019-10-29[Music] Adjust Pods Requests/LimitsSylvain Desbureaux6-26/+49
I've adjusted the Requests / Limits of portal pods according to real usage of "Orange Openlab" and "Onap daily master". Calculation is the following: per deployment: * CPU/Mem requests is max of average from the two deployments * CPU/Mem limits is (max of max from the two deployments) * 1.2 Change-Id: I3fce54e6be495a7014bf346d66721976fa2dab8b Issue-ID: MUSIC-533 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-10-29Merge "Updated The Version of Holmes"Borislav Glozman1-2/+2
2019-10-29Merge "AAF cert dist for DMaaP DR"Borislav Glozman17-161/+322
2019-10-29Merge "Add policy update notification topic to OOM"Borislav Glozman1-0/+5
2019-10-29Merge "Enabled HTTPS for sdc-workflow-designer"Borislav Glozman4-43/+16
2019-10-29Merge "Move AWX postgres and Netbox posgtres PVC to RWO"Borislav Glozman3-3/+3
2019-10-29Merge "Remove unused PVC from mariadb-galera chart"Borislav Glozman1-48/+0
2019-10-29Fixing missing apiVersion in etcd chartTomáš Levora1-1/+2
Missing apiVersion causes linting failure and therefore make common fails Issue-ID: OOM-2156 Signed-off-by: Tomáš Levora <t.levora@partner.samsung.com> Change-Id: Idb0aeb998fc99cc8e409247c6b5e20d140297a3e
2019-10-28Add policy update notification topic to OOMJim Hahn1-0/+5
Issue-ID: POLICY-1841 Signed-off-by: Jim Hahn <jrh3@att.com> Change-Id: I2ab0b7f40a9b60531dccd6175c76d0a18726816e
2019-10-28bug: readinessProbe was using liveness valuesOleg Mitsura2-6/+6
Issue-ID: CCSDK-1822 Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com> Change-Id: Id06aacd6081178384d5c13680182fb339e7cfff4
2019-10-28[NBI] Use mariadb-galera from commonSylvain Desbureaux13-431/+18
Instead of using "homegrown" mariadb chart, move to use the common mariadb-galera chart in order to be aligned with most of the other users of mariadb and eventually to move into the common mariadb galera instance. Change-Id: I0c8ed6adfea0d64f97e7d9378464039915d389c7 Issue-ID: EXTAPI-347 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-10-28Move AWX postgres and Netbox posgtres PVC to RWOSylvain Desbureaux3-3/+3
postgres doesn't support that many posgtres instances write into the same folder so moving to RWO mode is harmless Change-Id: I3faf715606a7bb479917faf022efbf6635d602f8 Issue-ID: OOM-2080 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-10-28Remove unused PVC from mariadb-galera chartSylvain Desbureaux1-48/+0
Used PVC(s) are actually created in the statefulset Change-Id: I24f2c3ff0934178c9af06bfee60b4b6e35cfe953 Issue-ID: OOM-2155 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-10-28Enabled HTTPS for sdc-workflow-designerr.bogacki4-43/+16
-Enabled HTTPS for frontend and backend -Updated paths and passwords for a certificates Issue-ID: SDC-2479 Signed-off-by: Robert Bogacki <r.bogacki@samsung.com> Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com> Change-Id: Ic4b379bc2eb73a984221fa06ddc0fe8f0fa2116b
2019-10-27Merge "fixing not working repository:image"Borislav Glozman1-2/+2
2019-10-27Merge "Adding Required Attributes to Catalog DB override"Borislav Glozman2-0/+6
2019-10-27Merge "policy helm changes to override of cert store"Borislav Glozman7-6/+44
2019-10-27Merge "Increase liveness/readiness probe timeouts."Borislav Glozman5-5/+14
2019-10-27Increase liveness/readiness probe timeouts.Oleg Mitsura5-5/+14
Issue-ID: CCSDK-1822 Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com> Change-Id: Ib75741d85cfe8d0d5129dac6d11d0a3468627320
2019-10-25Merge "Update policy brmsgw to point to latest versions"Mike Elliott1-2/+2
2019-10-25Update git submodulesBrian Freeman1-0/+0
* Update kubernetes/robot from branch 'master' to 868374dc9e41555fa9e75a0ca63deb7cd6780ab9 - Update to 1.5.4 Issue-ID: TEST-216 Change-Id: Ia00b0ab26a47cfd3306ccc14f1f7950c54690144 Signed-off-by: Brian Freeman <bf1936@att.com> (cherry picked from commit 71d1a6e7ea4cdba97aed46c66921ab213b4588ff)
2019-10-25Adding Required Attributes to Catalog DB overrideAndrewLamb2-0/+6
Change-Id: Ia502d96217f1e1ec904a26b9c56f7b288fb1f812 Issue-ID: OOM-2149 Signed-off-by: AndrewLamb <andrew.a.lamb@est.tech>
2019-10-25policy helm changes to override of cert storejhh7-6/+44
Issue-ID: POLICY-2064 Signed-off-by: jhh <jorge.hernandez-herrero@att.com> Change-Id: I5d9c6b8ea7e13b43b900f07d394b0bc5fb4b0c9f
2019-10-24Merge "Supply CDS GRPC endpoint details for policy (drools) to make use of"Borislav Glozman3-0/+15
2019-10-23Disable SDNC admin portalTimoney, Dan (dt5972)1-1/+1
Disable SDNC admin portal, due to security vulnerability. Change-Id: I6a54eb262b0a1e6694c6f6951587687466d54acc Issue-ID: SDNC-951 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>