diff options
author | 2022-11-10 10:51:08 +0100 | |
---|---|---|
committer | 2022-11-10 10:51:08 +0100 | |
commit | c6e56f1fff7f154634242e3dd457b1e1d98083ed (patch) | |
tree | 6f5157fc8dcd8783567e6d265f7e31bff1d74f56 /robot/resources/dcaemod_interface.robot | |
parent | 1cd4fbaa8a0c43802828d97b1d2cfc567f82600c (diff) |
[ROBOT] Fix HVVES and 5GBulkPM testcases
add missing onap namespace to helm and kubectl calls
Also fixed configuration for HVVES for Kohn release
Issue-ID: INT-2160
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: I891376c1949ddc5dbdce77ef65ce1898cba26f90
Diffstat (limited to 'robot/resources/dcaemod_interface.robot')
-rw-r--r-- | robot/resources/dcaemod_interface.robot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/robot/resources/dcaemod_interface.robot b/robot/resources/dcaemod_interface.robot index 04aa6ae1..19720e80 100644 --- a/robot/resources/dcaemod_interface.robot +++ b/robot/resources/dcaemod_interface.robot @@ -227,12 +227,12 @@ Deploy Applictaion [Arguments] ${processGroupName} ${compSpecName} ${command_output} = Run And Return Rc And Output helm repo update Should Be Equal As Integers ${command_output[0]} 0 - ${helm_install}= Set Variable helm install ${ONAP_HELM_RELEASE}-${compSpecName} chart-museum/${compSpecName} --set global.repository=${registry_ovveride} + ${helm_install}= Set Variable helm -n onap install ${ONAP_HELM_RELEASE}-${compSpecName} chart-museum/${compSpecName} --set global.repository=${registry_ovveride} ${helm_install_command_output} = Run And Return Rc And Output ${helm_install} Log ${helm_install_command_output[1]} Should Be Equal As Integers ${helm_install_command_output[0]} 0 Set Test Variable ${IS_SERVICE_DEPLOYED} True - ${kubectl_patch}= Set Variable kubectl patch deployment ${ONAP_HELM_RELEASE}-${compSpecName} -p '{"spec":{"template":{"spec":{"containers":[{"name": "${compSpecName}","image":"docker.io/nginx:latest"}]}}}}' + ${kubectl_patch}= Set Variable kubectl -n onap patch deployment ${ONAP_HELM_RELEASE}-${compSpecName} -p '{"spec":{"template":{"spec":{"containers":[{"name": "${compSpecName}","image":"docker.io/nginx:latest"}]}}}}' ${kubectl_patch_command_output}= Run And Return Rc And Output ${kubectl_patch} Log ${kubectl_patch_command_output[1]} Should Be Equal As Integers ${kubectl_patch_command_output[0]} 0 |