aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/so
AgeCommit message (Collapse)AuthorFilesLines
2022-04-07[SO] First release images for the J releaseSeshu-Kumar-M8-8/+8
First images of SO for Jakarta release. Issue-ID: SO-3912 Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com> Change-Id: I666a5a7e3be27cf24c2c557c9ce2f696213d1aff
2022-01-05[MARIADB] Downgrade mariadb versionSylvain Desbureaux1-1/+1
Use version 10.6.5-debian-10-r28 instead of 10.6.5. Also align clamp and so to use the same version as the other ones Issue-ID: OOM-1 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: Ie1db09b03daa1bb7792ee0ff6a73bd3483213e75
2021-12-07[GLOBAL] Migrate to helm v3efiacor38-674/+455
Move all Chart.yaml to use apiVersion: 2 Move dependencies from requirements.yaml to Chart.yaml Changes to all makeFiles Changes to helm deploy plugin Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: I03c5290eee9e40f76eacbf171e774204cf5fb1c0 Issue-ID: OOM-2845
2021-11-08[SO] Use log templateMaciej Wereski13-117/+50
Ability to turn off filebeat is needed as it is being deprecated. To achieve that existing log helper template is used. Issue-ID: OOM-1 Signed-off-by: Maciej Wereski <m.wereski@partner.samsung.com> Change-Id: Ib883fcafe4424d4ec78a999899c99af2ae95a6cc
2021-10-31Merge "[SO] Bump SO nssmf adapter version"Sylvain Desbureaux1-1/+1
2021-10-31Merge "[SO] Fix so-openstack-adapter support for Keystone V3 api"Sylvain Desbureaux4-1/+17
2021-10-31[SO] Bump SO nssmf adapter versionseshukm1-1/+1
Bump to 1.9.1 in order to fix defects found in the E2E testing. Issue-ID: SO-3758 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: Id9caedf9e9931660bce2e6732162a096d489a26f
2021-10-27[SO] Fix so-openstack-adapter support for Keystone V3 apiMarcin Wilk4-1/+17
Currently so-openstack-adapter configuration file contains hardcoded v2.0 Keystone endpoint. This fix allows for defining Keystone api version via values/override file Change-Id: Ib81c2888784d3d41c1ac2464c122a426743023dd Issue-ID: OOM-2866 Signed-off-by: Marcin Wilk <m.wilk@samsung.com>
2021-10-27[SO] Update the pods for cnf-adapter for the latest issuesLukasz Rajewski1-1/+1
Istanbul related pairwise testing issues resolved and updated the pods. Issue-ID: SO-3404 Issue-ID: SO-3795 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com> Change-Id: Ieb133108231562efb24a06f605ece64f76ee1e7c
2021-10-20Merge "[SO] Add properties for history cleanup window"Sylvain Desbureaux2-3/+12
2021-10-20Merge "[COMMON] Bump ONAP version"Sylvain Desbureaux36-117/+152
2021-10-15[COMMON] Bump ONAP versionSylvain Desbureaux36-117/+152
Use version 9.0.0 for Istanbul Also update the doc. Issue-ID: OOM-1 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I03e11799bf487226784c98b04116f005c89d1e70
2021-10-13[SO] Istanbul image changes after E2E integration testsLukasz Rajewski7-7/+7
Bump of SO Istanbul images after E2E integration tests Issue-ID: SO-3767 Issue-ID: SO-3768 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com> Change-Id: I13c7ea23329a5da38f20638a9e6010f1a28f35fe
2021-10-12[SO] Add properties for history cleanup windowJozsef Csongvai2-3/+12
These properties define a time window where the history cleanup job is allowed to run. Without these properties the cleanup job would not be triggered automatically. Also set mso.bpmn-history-ttl (days). This ttl value will be applied to all bpmn definitions, which will set a removal date for historic data. Remove old historyTimeToLive property which is no longer used. Issue-ID: SO-3770 Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca> Change-Id: I5baee0a3ba8700b4ce177e3af4d480a8ae737e5f
2021-10-08[SO] Update the pods for cnf-adapter for the latest issuesseshukm2-1/+4
Istanbul related pairwise testing issues resolved and updated the pods Issue-ID: SO-3747 Issue-ID: SO-3767 Issue-ID: SO-3768 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: I39f45ef20efc0621580e2d6e1836bfbd224bd8a0
2021-09-26[COMMON] Add and run pre-commit linters via toxguillaume.lambert12-214/+198
- create a .pre-commit-config.yaml configuration file with * gitlint * trailing blanks linter * tabs removal linter - exclude .git folder from it - exclude Makefiles since tabs are mandatory by default in them - create a tox pre-commit profile to run it from tox note gitlint is not runnable at this pre-commit stage - create pre-commit-install and pre-commit-uninstall tox profiles to (un)install hooks locally and (un)perform tests at each "git commit" call (i.e. without calling manually the pre-commit tox profile) - precise pre-commit stages/types in the pre-commit configuration file so that hooks are installed correctly. This avoids messages about skipped tests when they are run at a wrong stage. Issue-ID: OOM-2643 Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com> Change-Id: Ie95bb4f6f90be80b05a1398973caffeff7936881
2021-09-22Merge "[SO] Add TLS configuration for SO API Ingress"Krzysztof Opasiak3-2/+24
2021-09-20[COMMON] Replace tabs by 4 ws in shell scriptsguillaume.lambert3-5/+5
with the following command $ find . -not -path '*/\.*' -name *.sh -exec sed -i 's/\t/ /g' {} + then realign manually what deserves it and in particular, unindent some EOF scripting tags so they do not trigger errors. Issue-ID: OOM-2643 Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com> Change-Id: Ibfa463ec8083d5a39de18a54d9c1d8746710fe03
2021-09-08[SO] Add TLS configuration for SO API IngressSylvain Desbureaux3-2/+24
Instead of terminating TLS on SO POD, let's terminate it on its Ingress. This patch uses certInitializer to create the right certificates and put them in a secret. This secret is then referenced on SO Ingress. Issue-ID: SO-3078 Issue-ID: SO-3237 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: Icdc8cf6fc84cb3b3c337b4f4e5320980eee06337
2021-08-31Merge "[SO] Check for job instead of container for so-mariadb-config"Krzysztof Opasiak8-8/+16
2021-08-31Merge "[SO] SO Istanbul first release candidate"Krzysztof Opasiak7-7/+7
2021-08-30[SO] SO Istanbul first release candidateDan Timoney7-7/+7
Includes the So core components. Also installs compatible CDS version 1.1.5 Issue-ID: SO-3740 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: Ic40426e569fd9f15e50d6697eb031f169c7eb38b Signed-off-by: Dan Timoney <dtimoney@att.com>
2021-08-27[SO] Check for job instead of container for so-mariadb-configPrabhjot Singh Sethi8-8/+16
so-bpmn-infra deployment init container waits on so-mariadb-config pod to complete instead of checking job status itself. This causes issues when the completed config job container finishes and gets cleaned up due to garbage collector, after which so-bpmn-infra pod gets stuck in init state forever. Fixing other instances of waiting for so-mariadb-config job as well. Issue-ID: OOM-2799 Signed-off-by: Prabhjot Singh Sethi <prabhjot@aarnanetworks.com> Change-Id: Ib6d1b53d52c178386a743558c4b45b8f8748487b
2021-08-26[SO] Add multicloud endpoint to cnf adapterLukasz Rajewski1-0/+2
Add multicloud endpoint to cnf adapter overrides Issue-ID: SO-3643 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com> Change-Id: Ia5fb860e66be69607c90ba3cac5d76034344b80a
2021-06-15Merge "[COMMON] Get rid of "x-hack" in shell scripts"Sylvain Desbureaux1-2/+2
2021-06-10[SO] Update chart with service accountfarida azmy51-0/+170
Add service account to requirements.yaml, values.yaml and deployment/statefulset Issue-ID: OOM-2718 Signed-off-by: farida azmy <farida.azmy.ext@orange.com> Change-Id: Ic17b8d9307216a7feeceefe6a1e6f0fe4839a637
2021-06-02[COMMON] Get rid of "x-hack" in shell scriptsGuillaume Lambert1-2/+2
$ find . -name *.sh -print |xargs grep -l '"x'| xargs sed -i 's/"x/"/g' The "x-hack" is a historical workaround for some old UNIX shells with buggy condition comparison code. None of them is still used today. Recent POSIX specifications now guarantee it should work without it in any modern POSIX shell. More details at https://www.vidarholen.net/contents/blog/?p=1035 https://github.com/koalaman/shellcheck/wiki/SC2268 Issue-ID: OOM-2643 Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com> Change-Id: Ic01bbc5faee9492dba5b5d4dea0f659540da2c24
2021-05-19[SO] Adding "update" to the list of supported operationsHesam Rahimi1-0/+1
Update operation was missing for vnf-topology-operation in generic-resource-api. This "update" operation is needed to support the "modify" Trnasport Slice use-case of CCVPN. Issue-ID: OOM-2750 Signed-off-by: Hesam Rahimi <hesam.rahimi@huawei.com> Change-Id: I3c36abf5d7f674abc8392b20b3c374f70bf2a520
2021-04-29[SO] Bump versions to resolve the CNFO issuesseshukm7-7/+7
The fix for blocking issue of 1. SO-CDS interaction and 2. post instantiate flag Issue-ID: SO-3628 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: Id09c1e04e8063dd1fb5cae47b5c17bc43d028d57
2021-04-16[SO] Honolulu versions for CNF adapter, oof adapter and nssmf adapterseshukm6-9/+9
The sub-components of the SO that are depend on the latest SO core component. Issue-ID: SO-3473 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: I7528df6aeac00bb2c64b4659185ab7f72d4f2aff
2021-04-06[SO] Release the H release for sol005 adapterseshukm11-13/+13
Rename the vfc-adapter to etsi-sol005-adapter. Issue-ID: SO-3473 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: I79949521c58b05f9b7eacad591d06f62e3ab1983
2021-03-30Merge "[SO] Change sub component names"Krzysztof Opasiak24-48/+49
2021-03-29[SO] Update sub components to Honolu releasesSylvain Desbureaux3-3/+3
Update: - cnf adapter to 1.8.0 - nssmf adapter to 1.8.0 - oof adapter to 1.8.2 Issue-ID: SO-3473 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I10af676b741941cc9ecf4e6ea373363dd7c66b35
2021-03-29[SO] Change sub component namesSylvain Desbureaux24-48/+49
Some SO components have changed their names: * so-monitoring is now so-admin-cockpit * so-etsi-nfvo-ns-lcm has a new repository * so-vnfm-adapter is now so-etsi-sol003-adapater Issue-ID: SO-3473 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I75be10b42fc7b44ac0f654853953f6139f3b1c13
2021-03-29[SO] Release the artifacts for SOseshukm10-50/+113
SO core components 1.8.1 and sub-components 1.8.2. Also the DB scripts to support the camunda 7.14. Issue-ID: SO-3566 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: Ia0efe1116b6435c3aa19beb3b0a938a2f2ae0bea [Rebase and resolve conflicts] Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2021-03-26[SO] SDNC-adapter missing properties for the latest changesseshukm4-1/+34
Adding the missing oom properties for the sdnc adapter. Issue-ID: SO-3590 Signed-off-by: seshukm <seshu.kumar.m@huawei.com> Change-Id: Id114848c88329db8317695391142483a43d1b6fb
2021-03-24[DOC][COMMON] Prepare Honolulu releaseSylvain Desbureaux36-100/+98
Updating the documentation and bumping version to 8.0.0 Issue-ID: OOM-1 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I6f942f1466fed64264c44fb8fc0e1ffc93a98f18
2021-03-20[SO] Use truststore all keystoreSylvain Desbureaux18-54/+21
Truststore given by AAF is only giving ONAP root_ca. In order to have access to other platforms, we must also have all the other ones. As ONAP root ÇA and all known CAs are present in truststore All, let's use it. Issue-ID: OOM-2688 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I551b8e4a316dcf4f2dee1bf6c45327496a488cdd
2021-03-18[SO] Simplify cert retrieval scriptSylvain Desbureaux4-82/+5
As retrieving values is now done via a generic script, let's clean a little bit cert retrieval in order to remove unneeded part. Also, as MSB is now using certInitialize, we don't need to onboard it's certificate. Issue-ID: OOM-2688 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I5b8ed861ab94b97f2de0d52a4e4385b97a4f5afc
2021-03-11Revert "[SO] Update camunda sql scripts for new version"Krzysztof Opasiak3-115/+53
This reverts commit 7f6e28db2121bbf4c1f574bbdb46a5e72ca8e363. Let's see if this helps with our E2E Issue-ID: OOM-1 Change-Id: Id46ee434d93697749b5cb5a174bd1d1e4bcb7c1c Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2021-03-02[SO] Update camunda sql scripts for new versionBenjamin, Max (mb388a)3-53/+115
Update sql scripts to match camunda 7.14.0 Issue-ID: SO-3562 Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com> Change-Id: I013caf1791a426f6bbfa85fdc6572426ed332d33
2021-01-11[SO] Update SO to 1.7.11 (CNF and slicing bugfixes)deen198514-14/+14
Update SO containers to 1.7.11, solve CNF and E2E NW slicing bugfixes: Containers: + name: 'so/vnfm-adapter' + name: 'so/catalog-db-adapter' + name: 'so/request-db-adapter' + name: 'so/openstack-adapter' + name: 'so/sdnc-adapter' + name: 'so/vfc-adapter' + name: 'so/sdc-controller' + name: 'so/bpmn-infra' + name: 'so/so-monitoring' + name: 'so/api-handler-infra' + name: 'so/nssmf-adapter' + name: 'so/mso-cnf-adapter' + name: 'so/so-oof-adapter' + name: 'so/so-etsi-nfvo-ns-lcm' Change-Id: I6755bef5a6ee019afa6ad41ec20c42f9703182d8 Signed-off-by: Damian Nowak <damian.nowak@nokia.com> Issue-ID: SO-3431
2020-12-17Merge "[COMMON][MARIADB] Upgrade Mariadb DB galera version"Krzysztof Opasiak1-6/+10
2020-12-14[COMMON][MARIADB] Upgrade Mariadb DB galera versionSylvain Desbureaux1-6/+10
Mariadb DB Galera containers version is outdated and unmaintained. We need them to move to a new image provider. As new image provider is not compatible with our old templates, we also update the templates (by reworking bitnami mariadb-galera chart). An update of global mariadb image is also done in order to match mariadb galera version. Issue-ID: OOM-1720 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: Ib9976227759e90022183d4f37fc655143be4d6ac
2020-12-14[SO] Use readiness check job supportSylvain Desbureaux3-14/+10
CNF Adapter needs to wait for mariadb config job to be performed. Unfortunately, when we deploy using gating, the repositoryOverride makes the pod to use a wrong image. With readinessCheck job support, we don't have this issue anymore Issue-ID: SO-3416 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I0ef79cdc46bc3dbd55988d3d1ad601ed9c6a4cdb
2020-12-08[SO] Add more debug when password is not well setSylvain Desbureaux1-0/+2
Sometimes, password generated by AAF is not well escaped by sh. As we don't know which characters are giving bad results, we'll temporarily show SO faulty generated passwords and check generated file exists. Issue-ID: OOM-2617 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I0b45432447a672a90cbcf96a03efd18b9ea1d6cf
2020-12-07[SO] Configure Dmaap topic for AN NSSMF-SDNR interactionsPriyadharshini1-0/+4
Issue-ID: SO-3374 Signed-off-by: Priyadharshini <priyadharshini.b96@wipro.com> Change-Id: I92d50b1941f12c8d6de84e105742bc3cb9114c6a
2020-12-01Merge "[SO] Add some debug when password is not well set"Krzysztof Opasiak1-4/+13
2020-12-01[SO] Add some debug when password is not well setSylvain Desbureaux1-4/+13
Sometimes, password generated by AAF is not well escaped by sh. As we don't know which characters are giving bad results, we'll temporarily show SO faulty generated passwords. Issue-ID: OOM-2617 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: Ia99ba686b2ab4ed773d9c4344bd95338b9f0bdf1
2020-11-30[COMMON][DOC] Bump version GuilinSylvain Desbureaux36-97/+97
Update charts and requirements to 7.0.0. Create release notes for Guilin Update documentation Issue-ID: OOM-2638 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I965ed6b6ebb7d74bfddaff73edd3dd55a657841c