summaryrefslogtreecommitdiffstats
path: root/kubernetes/appc/charts
AgeCommit message (Collapse)AuthorFilesLines
2020-11-30[COMMON][DOC] Bump version GuilinSylvain Desbureaux4-4/+4
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 (cherry picked from commit 4f9902b6e7b5c70588160266276904ab81832867)
2020-10-21[APPC] change comment styleJakub Latusek6-0/+12
Signed-off-by: Jakub Latusek <j.latusek@samsung.com> Change-Id: If52740c1d17d9c42b019632e0ded5cf636cdd00e Issue-ID: OOM-2562
2020-09-18Set service name in statefulsetJakub Latusek1-0/+1
Signed-off-by: Jakub Latusek <j.latusek@samsung.com> Change-Id: Ida56d581771d24e088c774db973419f1d481f18d Issue-ID: OOM-2562
2020-09-04[GENERAL] Use readiness container v3.0.1Sylvain Desbureaux1-2/+1
Readiness container v3.x and up are now present in ONAP main repository. They're also not using root user anymore and then script path has changed. Finally, "job_complete" script has been integrated in main "ready" script. As those changes are significant, we must upgrade all the components at once. Depends-On: I5afa83892043f4844afe12e61724a8d368a9f2e0 Issue-ID: OOM-2545 Signed-off-by: Grzegorz Lis <grzegorz.lis@nokia.com> Change-Id: I0b4eb5dd86390273532d67d0a9696e1cfcadf110
2020-07-14Make APPC compatible with Kubernetes v1.17kosewski2-2/+8
Issue-ID: OOM-2447 Signed-off-by: Krzysztof Kosewski <krzysztof.kosewski@nokia.com> Change-Id: I9a199104001162fbf8531ac6ce9df4c3210c917d
2020-05-23the final docker release for R6Taka Cho1-1/+1
the final docker release for R6 Issue-ID: APPC-1869 Change-Id: Ic16764a73e0cfafc4063048a94953878d900e5af Signed-off-by: Taka Cho <takamune.cho@att.com>
2020-05-06[APPC] Fix Ingress configurationSylvain Desbureaux1-1/+1
set redirect to https based service. Issue-ID: OOM-2173 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I8b226cd6d8cd598cf6578b58d0d0c0f9558fd818
2020-04-031.7.1 release for APPCTaka Cho1-1/+1
1.7.1 release for APPC Issue-ID: APPC-1849 Change-Id: I6b5f2d03bd737b0b12345339ab923f1c9b7627b4 Signed-off-by: Taka Cho <takamune.cho@att.com>
2020-04-02Bump chart versionSylvain Desbureaux4-4/+4
Use 6.0.0 in preparation for Frankfurt release Issue-ID: OOM-2320 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I8ad82dfdf48b56c38c0e85d640b18cc13c8d9e67
2020-03-13remove 30208 portTaka Cho1-2/+2
the port 30208 was using http apidoc since we have moved to https apidoc hence this 30208 can be removed Issue-ID: APPC-1851 Change-Id: Iccd814bd624635939c51147489af708320caedac Signed-off-by: Taka Cho <takamune.cho@att.com>
2020-02-02Merge "release 1.7.0 APPC in Frankfurt"Borislav Glozman1-1/+1
2020-02-01[ONAP-wide] Replace .Release.Name with common.releaseKrzysztof Opasiak6-12/+12
ONAP is too big to be deployed using helm install so we need to use a custom helm plugin helm deploy. This script deloys onap component by component instead of deploying evrything at once. Unfortunately this script also modifies the helm release by appending component name to it. As a result of this behavior our objects are called for example: onap-mariadb-galera-mariadb-galera-0 instead of just being called onap-mariadb-galera-0. This patch simplifies this naming convention by replacing all direct usages of .Release.Name with common.release macro which strips the component specific part from the release name. Issue-ID: OOM-2275 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: Ia8cead50d305adb00eef666d0a1ace74479b5183
2020-01-27release 1.7.0 APPC in FrankfurtTaka Cho1-1/+1
Neon SR1 ODL version compliance APPC docker image released Issue-ID: APPC-1816 Change-Id: I8f6a04eab39e3876bffc232ad1329931711ba60b Signed-off-by: Taka Cho <takamune.cho@att.com>
2020-01-15Merge "Add ingress controler support to APPC"Sylvain Desbureaux2-0/+7
2019-12-03Add ingress controler support to APPCLucjan Bryndza2-0/+7
Issue-ID: OOM-2173 Change-Id: I39aaba4a5b35dd82ffe9f5acc413a7dd93e451c2 Signed-off-by: Lucjan Bryndza <l.bryndza@samsung.com>
2019-11-29[APPC] Use global storage templates for PVCSylvain Desbureaux2-4/+12
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 Change-Id: I04757c8fffc4987c4d49da9f474f3e20367de214 Issue-ID: OOM-1227 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2019-11-07Merge "Remove unused properties from config files"Sylvain Desbureaux1-7/+0
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[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-09-25APPC 1.6.4 docker releasedTaka Cho2-2/+2
change value files to refect for El Alto release Issue-ID: APPC-1735 Change-Id: Ia882fdbf29a8b5e4321c9942705097e997044e1a Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-09-13release 1.6.3 appc imagesTaka Cho1-1/+1
1.6.3 El Alto release Issue-ID: APPC-1686 Change-Id: I27ba4110138b7ff9bb619b340fa19d3ec62ecb34 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-09-09expose 8282 port outsideTaka Cho1-2/+2
8282 port is used for the url executor in DG. Also external IP address is used in DG. Hence has to be exposed to outside Issue-ID: APPC-1712 Change-Id: I2cff6b514edf7dde76e9b73351678bdf7a3771e4 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-08-01Revert Snapshot appc, sdc - add aai directoryBrian Freeman1-1/+1
Issue-ID: TEST-185 Change-Id: I2bce2a44aa540a846933c548dd0ab67f3e53e679 Signed-off-by: Brian Freeman <bf1936@att.com>
2019-07-16move APPC apidoc from http to httpsTaka Cho1-1/+1
1, changed 8181:8282 to 8443:8443 maps to 30230 port 2, take snapshot-1.6.0 appc image that contains https change 3, chang robot config to https:8443 port Issue-ID: OJSI-113 Change-Id: Icd1c158ae426013cb742b23a50a6d2929ca33d5e Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-07-11Moving Helm Chart version for El AltoMike Elliott4-4/+4
Updating all helm chart versions to 5.0.0 for the El Alto release. Merge will be co-ordinated with the merge of a separate aai/oom patch. Please do not merge until this coordination has completed. Issue-ID: OOM-1980 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com> Change-Id: I31daaebeacea33565f13affd2fa28fb15fe948ba
2019-06-26change ansible directory ownershipTaka Cho3-9/+16
move to /home/ansible to share in NFS and owned by ansible:ansible (100:101) Issue-ID: APPC-1596 Change-Id: Id2c60ccf7d8bd1d7137a26fa3561c4322b9b03d9 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-06-22release 1.5.3 APPC dockersTaka Cho1-1/+1
new appc docker for dublin Issue-ID: APPC-1595 Change-Id: I52533ce35868b2ad1bd82d2e1cec7c48102cb430 Signed-off-by: Taka Cho <takamune.cho@att.com> (cherry picked from commit a1d20aee2c93e7ceeda1c680e654fecbe9284317)
2019-06-14release 1.5.2 in OOMTaka Cho1-1/+1
1.5.2 release is for Dublin Change-Id: Ib967d3938c74dd286c543eb8a51bb61ff9b34583 Issue-ID: APPC-1595 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-05-29release 1.5.1 APPC imageTaka Cho1-1/+1
Dublin 1.5.1 APPC / CDT image release docker Change-Id: I1daf682cf81f4b505e0e52875853ed422cb9c535 Issue-ID: APPC-1595 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-05-13update appc imageTaka Cho1-1/+1
1.5.0 appc docker released Change-Id: Ibbd155006c22d065187c5288a1d2378b4f512d84 Issue-ID: APPC-1595 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-05-09remove readiness for ansible podTaka Cho2-16/+1
ansible pod does not require any dependency with other pod, and the restful script can be brought up within one minutes also use the release version Change-Id: I310963a3d01d5ca99c3495f201e1aa3ec3d60fea Issue-ID: APPC-1602 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-04-25fix /home/ansible ownershipTaka Cho1-2/+2
in k8s, the nfs mount point was assigned to /home/ansible that caused the issue where /home/ansible becomes to root:root so moved to /var/local and also updated to the laest version that contains the latest fix Change-Id: I8bd79c1f606a4392df1780fae4964b54f767c1e2 Issue-ID: APPC-1583 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-04-02expose ansible container on nfs mountAaron Hay3-4/+87
/home/ansible will be exposed in /dockerdata_fs in order to let user copy playbook Change-Id: I01307f461da6e9174127c951c4691b81eddab68b Issue-ID: APPC-1445 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-03-07move non-root id run for CDT containerTaka Cho3-4/+5
change port 80 to 18080 for non-root user Change-Id: Ib1e987b6aaf537df4d1b08797b928aa0b116fab0 Issue-ID: APPC-1519 Signed-off-by: Taka Cho <takamune.cho@att.com>
2019-02-10Update Chart version for Dublin ReleaseMike Elliott4-4/+4
All charts are being bumped from 3.0.0 to 4.0.0 for the Dublin release. In addition the requirement.yaml files have been updated to allow for chart versions that include timestamp suffix. A following on patch will take care of changes to the OOM Makefiles to support injection of the timestamp versions. Change-Id: Ie03d86fad2027e975e8b9106e3a828e4335037cb Issue-ID: OOM-1642 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
2019-01-28Update startODL based on changes to docker startAaron Hay1-1/+1
The installation time for APPC has been greatly improved for the Dublin release. Changes to remove unzipping and feature set installation are needed. Change-Id: I9fb42abc53648ce4d2a1361e6784fbab49330abf Issue-ID: APPC-1341 Signed-off-by: Aaron Hay <aaron.hay@att.com>
2018-11-23resources are always setSylvain Desbureaux1-1/+1
and not only if node selector is set. Issue-ID: APPC-1248 Change-Id: I37daa91f0fd0985595248610d21642fe74986a8f Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2018-11-20Sync docker tags with release manifestGary Wu1-1/+1
Sync docker tags with the release manifest from integration repo commit 0aad96cbbcdb97c2b074cb83d367c29dac6243df. Issue-ID: INT-663 Change-Id: I877077c3a35cb196c89ebb0e27dfe452e12b5249 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-11-19Update APPC ansible server image versionAaron Hay1-1/+1
Change-Id: Ic6b17c4a3ece333a159529d55e5fefb273e60571 Issue-ID: OOM-1523 Signed-off-by: Aaron Hay <aaron.hay@att.com>
2018-10-18Sync docker tags with release manifestGary Wu2-2/+2
Sync docker tags with the release manifest. It is assumed that the release manifest is the "single source of truth" and that the versions in the helm charts are out of date. Change-Id: I2902e60b25f57409dd616780a626e63c92d26769 Issue-ID: INT-663 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-09-27Merge "Update ansible path from sdnc to ccsdk"Alexis de Talhouƫt2-3/+3
2018-09-27Update ansible path from sdnc to ccsdkAaron Hay2-3/+3
Change-Id: I690a189e71f19255f52fa43c05e3193d94d439bd Issue-ID: CCSDK-554 Signed-off-by: Aaron Hay <ah415j@att.com>
2018-09-25Updating charts to use common resource templateMandeep Khinda2-2/+2
Issue-ID: OOM-1145 Change-Id: I1510339a820802554b6e8b9a201619ef66be17a0 Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
2018-09-25adding unlimited resource limitMandeep Khinda2-10/+4
Adds the ability to turn them off if they are found to cause issues also cleaning up some whitespace Issue-ID: OOM-1145 Change-Id: Idf0ee21f70e1bf65813b7f51ea028f2783a01cf8 Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
2018-09-24Update Chart versions to 3.0Mike Elliott4-4/+4
All Chart versions and requirement dependencies have been updated to 3.0 for Casablanca release. Change-Id: Iea57e5da09ea8a8bac0a415b9a6196151cbea10b Issue-ID: OOM-1354 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
2018-09-20reducing resource request numbersMandeep Khinda2-8/+8
Issue-ID: OOM-1145 Change-Id: Ic2770086914e7cf1a96f2b6e5fd04bf1bd3f75d8 Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
2018-09-19Add Resource Limits for APP-CGregSulek4-18/+39
flavor names removed from global Issue-ID: OOM-1148 Change-Id: Ib8ccb694786d15be2830c067d5c3b10fc7054f0b Signed-off-by: GregSulek <gsulek@amdocs.com>
2018-09-06APPC ConfigMap Labellingvaibhav_16dec1-1/+6
Issue-ID: OOM-1374 Change-Id: Ib91ca319bf272bccd483b89708e99261ee993614 Signed-off-by: vaibhav_16dec <vaibhav.chopra@amdocs.com>
2018-09-05Apache 2 license addition for consul,appcMukul6-0/+84
Issue-ID: OOM-1308 Change-Id: I6cfe05841a17f81e862dfbf4bedaa4ba87f96e1e Signed-off-by: Mukul <mukul.joshi@amdocs.com>
2018-08-30Add APPC ansible server pod to OOM chartAaron Hay8-0/+330
Change-Id: I92b472e6e8983684160def9c936286406475a924 Issue-ID: OOM-1346 Signed-off-by: Aaron Hay <ah415j@att.com>