aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes
AgeCommit message (Collapse)AuthorFilesLines
2019-12-18Merge "[DMaaP] Use global storage templates for PVC"Borislav Glozman12-158/+236
2019-12-18Merge "VID: Remove VID_KEYSTORE_PASSWORD workaround"Borislav Glozman1-2/+0
2019-12-18Merge "[SDNC] Use global storage templates for PVC"Borislav Glozman8-142/+189
2019-12-18Update Validation topic passwords for obfuscationLeonard, Mark (ml401d)3-3/+3
Change the dummy password values to OBF: so that the properties files will load correctly at application start-up. Change-Id: I1903026ca57db460c41163e1f7dc42a02fd3c2e2 Issue-ID: AAI-2110 Signed-off-by: Leonard, Mark (ml401d) <ml401d@att.com>
2019-12-17Merge "Enable Cassandra for AAI in minimal ONAP environment"Sylvain Desbureaux1-4/+4
2019-12-17Merge "Secure FE communications to the workflow backend"Sylvain Desbureaux11-87/+71
2019-12-17Merge "Remove old nginx configurtion from the SDC"Sylvain Desbureaux1-1/+0
2019-12-17Remove old nginx configurtion from the SDCLucjan Bryndza1-1/+0
Remove not longer suported and incompatibile option from the SDC nginx ingress configuration Issue-ID: OOM-2187 Signed-off-by: Lucjan Bryndza <l.bryndza@samsung.com> Change-Id: I5bddbc8400569cc8a58c48cd15ca00991336e1c8
2019-12-17[COMMON] Use deployment for postgresqlSylvain Desbureaux36-9/+1894
Instead of statefulset + inner work in the container, use deployments in order to be more reliable Change-Id: Icf4fe1303ae3489c822558e28bb08b69af2d4970 Issue-ID: OOM-2234 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-12-17Merge "VID logging adjustments"Sylvain Desbureaux1-299/+386
2019-12-17Secure FE communications to the workflow backendIlanaP11-87/+71
Update of the workflow fe and be charts to secure the communications and to start the backend server is https mode with a secured connection to SDC Issue-ID: OOM-1954 Signed-off-by: IlanaP <ilanap@amdocs.com> Change-Id: Ia3c4c714e317b8f8b6b4ee9245daa50eea50275f Signed-off-by: IlanaP <ilanap@amdocs.com>
2019-12-16Improve common secret templateKrzysztof Opasiak1-15/+248
Improve common secret template by adding: - ability to generate secrets if they are not provided - ability to fail the deployment if marked secret is not provided - support for using already existing secret instead of creating a new one Issue-ID: OOM-2053 Change-Id: Ic101f384f7c767702f646eb0e879ec80bf9a6334 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2019-12-16Add secret template to common templatesKajur, Harish (vk250x)1-0/+43
Separated from change: I65f9891f1d3586c0633b252a47b461c887d5b8ad to allow the template to be easily merged to master. Issue-ID: OOM-1971 Change-Id: I8dd4128bfa6e614ba5ddd084c45ca008e4da87ad Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com> [Separate from other changes, add license header, update commit message] Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2019-12-16Enable Cassandra for AAI in minimal ONAP environmentPawel Wieczorek1-4/+4
Deployment of AAI component fails unless Cassandra is enabled in the cluster [1]. This patch also adds Cassandra to the list of enabled components and fixes minor typos in the documentation. [1] https://git.onap.org/aai/oom/tree/requirements.yaml#n23 Issue-ID: INT-1402 Change-Id: I5cb57e1909f749bb8d28fac0e5eeb09f6cfe4b33 Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
2019-12-16Merge "DMaaP switch from HTTP to HTTPS"Sylvain Desbureaux1-1/+1
2019-12-16[SDNC] Use global storage templates for PVCSylvain Desbureaux8-142/+189
OOM has now templates in order to create the needed PVC, using: * a PV with a specific class when using a common nfs mount path between nodes (sames as today use) --> is the default behavior today * or a storage class if we want to use dynamic PV. On this case, we use (in order of priority): - persistence.storageClassOverride if set on the chart - global.persistence.storageClass if set globally - persistence.storageClass if set on the chart I've also used "range" for PV creation of the statefulset I've created one file per PV (one for mdsal, one for certs). sdnc-prom was using hostpath directly on deployment, move to a PV/PVC. Change-Id: Id9eed3b13ac85595c386e380f41cfbc38b52c69f Issue-ID: OOM-1227 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-12-15VID: Remove VID_KEYSTORE_PASSWORD workaroundIttay Stern1-2/+0
Workaround is no longer needed, after CATALINA_OPTS parameters are late-evaluated. See commit https://gerrit.onap.org/r/c/vid/+/99583 (change id Ife2a2e92b3745691cc45590d1afd1688d918048f). Issue-ID: VID-650 Change-Id: Ibb27d050632e8ce9b96da6e4033840380d1f3f72 Signed-off-by: Ittay Stern <ittay.stern@att.com>
2019-12-13Fix multicloud log message output issueBin Yang4-4/+4
The log config error results in log output failure Change-Id: I6451e678c3ac509ed676699ac048200feebc6ab8 Issue-ID: MULTICLOUD-966 Signed-off-by: Bin Yang <bin.yang@windriver.com>
2019-12-12[DMaaP] Use global storage templates for PVCSylvain Desbureaux12-158/+236
OOM has now templates in order to create the needed PVC, using: * a PV with a specific class when using a common nfs mount path between nodes (sames as today use) --> is the default behavior today * or a storage class if we want to use dynamic PV. On this case, we use (in order of priority): - persistence.storageClassOverride if set on the chart - global.persistence.storageClass if set globally - persistence.storageClass if set on the chart I've also split the 3 PV from dr-node into 3 files and used range so the number of PV is the same as number of PODs. Change-Id: I46b4e62042ea8330bef8cdc1561fa8bbf3f25d12 Issue-ID: OOM-1227 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-12-12VID logging adjustmentsIttay Stern1-299/+386
Now using org.onap.logging libs, improved formatting, and full MDC key/values dump. Added outgoingRequests logging of upstream in-out traffic. See also: VID logs to Logging Specification v1.2 (Casablanca) https://wiki.onap.org/pages/viewpage.action?pageId=28378955 Issue-ID: VID-253 Change-Id: If1378319d6c77fef0d08adc8e5e08c98cab50580 Signed-off-by: Ittay Stern <ittay.stern@att.com>
2019-12-12[POMBA] Use global storage templates for PVCSylvain Desbureaux8-37/+158
OOM has now templates in order to create the needed PVC, using: * a PV with a specific class when using a common nfs mount path between nodes (sames as today use) --> is the default behavior today * or a storage class if we want to use dynamic PV. On this case, we use (in order of priority): - persistence.storageClassOverride if set on the chart - global.persistence.storageClass if set globally - persistence.storageClass if set on the chart I've also created a PV/PVC couple for logs of ES as it was hardcoded in the deployment. Change-Id: Ic2da694da008803f5afc1a0e0de38a1428c5b40e Issue-ID: OOM-1227 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-12-11Update git submodulesDaniel Rose1-0/+0
* Update kubernetes/robot from branch 'master' to bc1480dc6c66d23ed04feaff93fca10da6a65a8f - Merge "Use global storage templates for PVC" - Use global storage templates for PVC OOM has now templates in order to create the needed PVC, using: * a PV with a specific class when using a common nfs mount path between nodes (sames as today use) --> is the default behavior today * or a storage class if we want to use dynamic PV. On this case, we use (in order of priority): - persistence.storageClassOverride if set on the chart - global.persistence.storageClass if set globally - persistence.storageClass if set on the chart Issue-ID: OOM-1227 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: Ie65e55bca92eb0ada674636f049ecb054b65c5da
2019-12-11Update git submodulesDaniel Rose1-0/+0
* Update kubernetes/robot from branch 'master' to dbb4ed7385a22871a0ffb719f04e0f0f257d0ab3 - Merge "Add distributeVCPE" - Add distributeVCPE Issue-ID: INT-1397 Change-Id: I172fc986207a61c91b2dc9b1efa5c58bd689ea06 Signed-off-by: Brian Freeman <bf1936@att.com>
2019-12-11Update git submodulesBrian Freeman1-0/+0
* Update kubernetes/robot from branch 'master' to a7e566c2c15914ad409ab4135891c0c092c300f0 - Add /etc/hosts Issue-ID: PORTAL-782 Change-Id: I8f7abd28c357cf6525c3368f38035a45126bf2ae Signed-off-by: Brian Freeman <bf1936@att.com>
2019-12-11Update git submodulesHarish Venkata Kajur1-0/+0
* Update kubernetes/aai from branch 'master' to c56543fa8c464f839cde7d80ff2023d6448e4b28 - Fix the startup issue of data router liveness so that the pod does die before it even had a chance to start the application Issue-ID: AAI-2727 Change-Id: I94246883cc5b46c7e9873e70214599653514d7d8 Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
2019-12-11Merge "Mavenized image creation for readiness-check"Borislav Glozman5-6/+127
2019-12-11Merge "Example ingress configuration with vhosts"Borislav Glozman1-17/+11
2019-12-11Merge "Add ingress configuration for so-monitoring"Borislav Glozman6-3/+27
2019-12-11Merge "[APPC] Use global storage templates for PVC"Borislav Glozman4-7/+23
2019-12-11Merge "[AAF] Use global storage templates for PVC"Borislav Glozman37-445/+357
2019-12-11Merge "[Common] Use global storage templates for PVC"Borislav Glozman50-1662/+318
2019-12-11Merge "Adding sdclistener properties for health check"Borislav Glozman1-1/+24
2019-12-11Merge "[AAF] No resources limits on PODs"Borislav Glozman15-157/+144
2019-12-11Merge "[Contrib] Use global storage templates for PVC"Borislav Glozman7-44/+14
2019-12-11Merge "[CDS] Use global storage templates for PVC"Borislav Glozman2-13/+5
2019-12-11Merge "[PORTAL] Use global storage templates for PVC"Borislav Glozman4-20/+8
2019-12-11Merge "Add missing [mysqld] group"Borislav Glozman1-0/+1
2019-12-11Merge "Add cert dist for DMaaP BC"Borislav Glozman3-1/+76
2019-12-11Merge "[CLAMP] Use global storage templates for PVC"Borislav Glozman4-15/+10
2019-12-11Merge "[Modeling] Use global storage templates for PVC"Borislav Glozman2-12/+6
2019-12-11Merge "[DCAE] Use global storage templates for PVC"Borislav Glozman6-215/+46
2019-12-11Merge "[Multicloud] Use global storage templates for PVC"Borislav Glozman9-45/+23
2019-12-11Merge "[VFC] Use global storage templates for PVC"Borislav Glozman2-12/+6
2019-12-11Merge "[PNDA] Use global storage templates for PVC"Borislav Glozman3-16/+47
2019-12-11Merge "[SO] Use global storage templates for PVC"Borislav Glozman2-11/+2
2019-12-11Merge "[LOG] Use global storage templates for PVC"Borislav Glozman2-4/+3
2019-12-11Merge "[POLICY] Use global storage templates for PVC"Borislav Glozman2-10/+4
2019-12-11Merge "[SDC] Use global storage templates for PVC"Borislav Glozman4-24/+12
2019-12-11Adding sdclistener properties for health checkShaabanEltanany1-1/+24
Issue-ID: CCSDK-1669 Signed-off-by: ShaabanEltanany <shaaban.eltanany.ext@orange.com> Change-Id: Id7343225f8c46c38d3c44c6c9ffdfe895742e5d6
2019-12-11Merge "Add ingress configuration for vid"Sylvain Desbureaux2-0/+7