summaryrefslogtreecommitdiffstats
path: root/kubernetes
AgeCommit message (Collapse)AuthorFilesLines
2021-06-15Merge "[DCAE] Push/pull DCAE sub-component charts from local repo"Sylvain Desbureaux10-20/+41
2021-06-15Merge "[COMMON] Fix docker-registry-key empty creds"Sylvain Desbureaux1-1/+1
2021-06-15Merge "[PMS] Persistent storage of policies and type definitions"Sylvain Desbureaux4-80/+16
2021-06-15Merge "[COMMON] Get rid of "x-hack" in shell scripts"Sylvain Desbureaux2-4/+4
2021-06-14[DCAE] Push/pull DCAE sub-component charts from local repoVijay Venkatesh Kumar10-20/+41
Enable DCAEcommon and subcomponent charts package push/pull to support standalone deployment for each component Added delay to avoid race condition Change-Id: I1a0bf08a6625d2d97078cd635a2bb42da629cce6 Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com> Issue-ID: DCAEGEN2-2781 Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
2021-06-11[COMMON] Fix docker-registry-key empty credsSatoshi Fujii1-1/+1
When image repository does not allow anonymous pull, image pull failed due to empty credentials in docker-registry-key secret. This change fixes _repository.tpl repository generator to refer to .global.repositoryCred in override.yaml . Issue-ID: OOM-2767 Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> Change-Id: I3cd7eabcdda547e99e0461767a0451dc1e51132b
2021-06-11[PMS] Persistent storage of policies and type definitionsPatrikBuhr4-80/+16
Improvements: - Using common metadata for the PV and the PVC. - Changed the deployment to a stateful set. Even Deployments with one replica using ReadWriteOnce volume are not recommended. This is because the default Deployment strategy creates a second Pod before bringing down the first Pod on a recreate. The Deployment may fail in deadlock as the second Pod can't start because the ReadWriteOnce volume is already in use, and the first Pod won't be removed because the second Pod has not yet started. Instead, use a StatefulSet with ReadWriteOnce volumes. Change-Id: If3477be43eee5348a9142cceb832bbb2bf9d6017 Issue-ID: CCSDK-3256 Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
2021-06-11Merge "[CDS] Update chart with service account"Sylvain Desbureaux15-0/+50
2021-06-11Merge "[SO] Update chart with service account"Sylvain Desbureaux51-0/+170
2021-06-11Merge "[COMMON][DGBUILDER] Update chart with service account"Sylvain Desbureaux5-1/+13
2021-06-11Merge "[SDC] Update chart with service account"Sylvain Desbureaux18-0/+60
2021-06-10Merge "[DCAEGEN2] Fix OpenAPI schemas path"Sylvain Desbureaux1-1/+1
2021-06-10Merge "[COMMON] Remove CertService client mechanism"Sylvain Desbureaux25-319/+25
2021-06-10[SDC] Update chart with service accountfarida azmy18-0/+60
Add service account to requirements.yaml, values.yaml and deployment/statefulset Issue-ID: OOM-2717 Signed-off-by: farida azmy <farida.azmy.ext@orange.com> Change-Id: I57a398865c2dea8dd5989dc2e9d80843bfabd3b5
2021-06-10[COMMON][DGBUILDER] Update chart with service accountfarida azmy5-1/+13
Add service account to requirements.yaml, values.yaml and deployment/statefulset Issue-ID: OOM-2720 Signed-off-by: farida azmy <farida.azmy.ext@orange.com> Change-Id: Iefe02cad5b2069879d043d17465f248f1f731519
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-10[CDS] Update chart with service accountfarida azmy15-0/+50
Add service account to requirements.yaml, values.yaml and deployment/statefulset Issue-ID: OOM-2723 Signed-off-by: farida azmy <farida.azmy.ext@orange.com> Change-Id: Ic254ec1865501bab90f47d07a37b230c228a7446
2021-06-10Merge "[CCSDK] Fix pnf-reg and fault message lost"Sylvain Desbureaux1-2/+0
2021-06-10[DCAEGEN2] Fix OpenAPI schemas pathMichal Banka1-1/+1
Fixed typo in path to resources where schemas are located Signed-off-by: Michal Banka <michal.banka@nokia.com> Change-Id: I41d938b8211bd0fcd3a1012161c6a7d03da56029 Issue-ID: DCAEGEN2-2690
2021-06-08[COMMON] Remove CertService client mechanismPiotr Marcinkiewicz25-319/+25
- Remove cmpv2Certificate chart in order to deprecate CertService client mechanism. - Remove CertServiceClient init containers in SDNC. - Replace CMPv2CertManagerIntegration with cmpv2Enabled flag Issue-ID: OOM-2744 Signed-off-by: Piotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com> Change-Id: I8c818fcf64a029552c8833f68b6ae95fad379c8d
2021-06-02Merge "[DCAEGEN2] Add new OpenAPI schemas configmap"Sylvain Desbureaux15-416/+6274
2021-06-02Merge "[DCAEGEN2] Update tca-gen2 to 1.3.0"Sylvain Desbureaux2-2/+2
2021-06-02Merge changes I44c8b60c,I0cb6d383Sylvain Desbureaux25-382/+447
* changes: [OOF] Update HAS charts to use etcd [COMMON][ETCD-INIT] Add etcd-init chart
2021-06-02[COMMON] Get rid of "x-hack" in shell scriptsGuillaume Lambert2-4/+4
$ 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-06-01[CCSDK] Fix pnf-reg and fault message lostSatoshi Fujii1-2/+0
CCSDK mountpoint-registrar bundle consumes SEC_FAULT_OUTPUT and VES_PNFREG_OUTPUT DMaaP topics. Currently dmaap timeout is set to 50000, which is much longer than jersey.config.client.readTimeout=25000. The bundle is giving up connection before dmaap timeout and that could cause message lost if message arrived after client timeout. This change remove the inappropriate timeout value from the property file so that the bundle uses default timeout value defined in java class. Issue-ID: CCSDK-3320 Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> Change-Id: I638af7c1f737b0904cb21c8121f2a08b2737d94b
2021-05-28Merge "[DCAEGEN2] Update CMPv2 certs usage in dcaegen2-services"Sylvain Desbureaux5-7/+30
2021-05-28Merge "[SDC] Update SDC to 1.9.0"Sylvain Desbureaux11-42/+54
2021-05-28[OOF] Update HAS charts to use etcdkrishnaa9618-381/+191
- Add etcd as a subchart - Add configuration to switch between etcd and music - Remove onboard and healthcheck jobs Issue-ID: OPTFRA-953 Signed-off-by: Krishna moorthy <krishna.moorthy6@wipro.com> Change-Id: I44c8b60c3bdb0282329b6f87c5011093055ea91f
2021-05-28Merge "[DCAE] Add secrets as envs to application container in dcaegen2"Sylvain Desbureaux1-0/+6
2021-05-28[COMMON][ETCD-INIT] Add etcd-init chartkrishnaa967-1/+256
- etcd-init chart will provision the users and roles in a running etcd instance - Change etcd container name for readiness init container to work Issue-ID: OOM-2746 Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com> Change-Id: I0cb6d3830b0048c4d70f381815bd3f858ec31ae7
2021-05-28[SDC] Update SDC to 1.9.0Joanna Jeremicz11-42/+54
- Add variables and default values needed for communication between SDC and helm-validator microservice. - Correct jetty paths - Update SDC to 1.9.0. Issue-ID: SDC-3185 Change-Id: Id054124a9f5e183597acbc81df79535aff517a1f Signed-off-by: xuegao <xue.gao@intl.att.com> Signed-off-by: Joanna Jeremicz <joanna.jeremicz@nokia.com>
2021-05-26Merge "[COMMON] Fix condition bracket bashisms - step 2"Krzysztof Opasiak4-9/+13
2021-05-26Merge "[COMMON] Fix condition bracket bashisms - step 1"Krzysztof Opasiak8-34/+34
2021-05-26[DCAEGEN2] Update tca-gen2 to 1.3.0Remigiusz Janeczek2-2/+2
Updates: - Vulnerabilities removal - Change openjdk baseOS img to integration-java11. Issue-ID: DCAEGEN2-2590 Issue-ID: DCAEGEN2-2654 Issue-ID: INT-1864 Issue-ID: DCAEGEN2-2420 Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com> Change-Id: Ie63a0feb4a9edc9ed0883a21ef9a906ed84f263a
2021-05-26[DCAE] Add secrets as envs to application container in dcaegen2Bartosz Gardziejewski1-0/+6
Mount app-config-input configmap directly to app container. Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> Change-Id: I50d80adcb87e86241876c9bab669739cb3d9c10c Issue-ID: DCAEGEN2-2630
2021-05-25[POLICY] Remove invalid SAN entries in AAF certsjhh1-2/+1
Discarded obsolete service names (brmsgw, pap, pdp that refer to the deprecated policy engine) and updated service name for drools. Issue-ID: POLICY-3327 Signed-off-by: jhh <jorge.hernandez-herrero@att.com> Change-Id: Ifeceabb594c2d1b9cbdf90ca45cf0be5d6aed875 Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
2021-05-24[DCAEGEN2] Add new OpenAPI schemas configmapMichal Banka15-416/+6274
- Added ConfigMap with 3gpp SA91-Rel16 OpenAPI schemas - Moved ConfigMaps from 'dcaegen2' chart to 'dcaegen2-services' - Removed old SA88-Rel16 OpenAPI schemas Signed-off-by: Michal Banka <michal.banka@nokia.com> Change-Id: Ibae0786c7d5e498aa076186a580a268913a57692 Issue-ID: DCAEGEN2-2690
2021-05-21Merge "[COMMON] Change import-custom-cert from bash to sh"Sylvain Desbureaux1-2/+2
2021-05-21Merge "[COMMON] Enhance ONAP common-service template - add IPv4/IPv6 support"Sylvain Desbureaux1-0/+5
2021-05-21Merge "[DCAEGEN2] Upgrade vescollector to 1.9.2"Sylvain Desbureaux2-2/+2
2021-05-21Merge "[SO] Adding "update" to the list of supported operations"Sylvain Desbureaux1-0/+1
2021-05-20[DCAEGEN2] Update CMPv2 certs usage in dcaegen2-servicesRemigiusz Janeczek5-7/+30
Updates: - Add microservice specific flag to determine if CMPv2 should be used - Add function to check if CMPv2 parts should be included Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com> Issue-ID: DCAEGEN2-2630 Change-Id: If81c50c6029aafef40fa91c5295ad8ad24f953d3
2021-05-19[COMMON] Change import-custom-cert from bash to sha.sreekumar1-2/+2
As part of removing GPLv3 license, policy components have moved from bash to sh. This change is required in import-custom-certs script so that custom certificates can be imported into components that try to import them. Without this change, the init containers of the components will just fail. Change-Id: I6c5028428d4cd7c8baf3e96cb16a3cd91db57f9e Issue-ID: POLICY-3232 Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
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-05-19[COMMON] Enhance ONAP common-service template - add IPv4/IPv6 supportUbuntu1-0/+5
Generic change for all common services by adding ipFamilyPolicy field. Dual Stack service exposure will be provided depending on k8s version (v1.20+). Signed-off-by: Magdalena Biernacka <magdalena.1.biernacka@nokia.com> Issue-ID: OOM-2749 Change-Id: Ia7236705010e625c19a22e42ec9a02c9f75a0ec5
2021-05-19Merge "[SDNC] Fix SDNC charts to make it work with aaf disabled"Sylvain Desbureaux1-1/+1
2021-05-19[DCAEGEN2] Upgrade vescollector to 1.9.2Maciej Malewski2-2/+2
Removed unnecessary dependencies: json-simple unirest-java commons-collections junit-jupiter mockito-junit-jupiter jimfs wiremock-standalone spring-security-test functionaljava Issue-ID: DCAEGEN2-2682 Signed-off-by: Maciej Malewski <maciej.malewski@nokia.com> Change-Id: Ic0986996d687ec02aca1f13a31194ca77e3cdff2
2021-05-19Merge "[MULTICLOUD] Bump multicloud-k8s image to 0.8.2"Sylvain Desbureaux1-1/+1
2021-05-17Merge "[DCAEGEN2] Deploy DCAEGEN2-PMSH Microservices to Helm"Sylvain Desbureaux9-0/+332
2021-05-17[MULTICLOUD] Bump multicloud-k8s image to 0.8.2Konrad Bańka1-1/+1
Update k8splugin with version based on Helm3 libraries Issue-ID: MULTICLOUD-1295 Issue-ID: MULTICLOUD-1338 Issue-ID: MULTICLOUD-1348 Signed-off-by: Konrad Bańka <k.banka@samsung.com> Change-Id: I793ccc0366fc061c5f0cb1e580e805de70b3d88a