X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fk8s_02-k8scluster_creation.robot;h=b27ce70c20fef1d7779c3a1f3aec06defff36499;hb=refs%2Fchanges%2F80%2F11180%2F2;hp=625b6f635f47c3379e1b79effd3816f187bd22c8;hpb=5c54d2714e0e755e47f220f885817b683096b238;p=osm%2Ftests.git diff --git a/robot-systest/testsuite/k8s_02-k8scluster_creation.robot b/robot-systest/testsuite/k8s_02-k8scluster_creation.robot index 625b6f6..b27ce70 100644 --- a/robot-systest/testsuite/k8s_02-k8scluster_creation.robot +++ b/robot-systest/testsuite/k8s_02-k8scluster_creation.robot @@ -13,6 +13,8 @@ # limitations under the License. *** Settings *** +Documentation [K8s-02] K8s cluster addition. + Library OperatingSystem Library String Library Collections @@ -20,25 +22,28 @@ Library Process Resource %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot -Variables %{ROBOT_DEVOPS_FOLDER}/resources/k8s_02-k8scluster_creation_data.py +Force Tags k8s_02 cluster_k8s daily regression + +Suite Teardown Run Keyword And Ignore Error Suite Cleanup -Suite Teardown Run Keyword And Ignore Error Test Cleanup + +*** Variables *** +# K8s cluster name and version +${k8scluster_name} k8s02 +${k8scluster_version} v1 *** Test Cases *** Add K8s Cluster To OSM - [Tags] k8scluster sanity regression - Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name} -List K8s Clusters - [Tags] k8scluster sanity regression - ${stdout}= Get K8s Cluster - Log To Console \n${stdout} + Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name} Remove K8s Cluster from OSM - [Tags] k8scluster sanity regression + [Tags] cleanup + Delete K8s Cluster ${k8scluster_name} *** Keywords *** -Test Cleanup +Suite Cleanup [Documentation] Test Suit Cleanup: Deleting K8s Cluster - Run Keyword If Test Failed Delete K8s Cluster ${k8scluster_name} + + Run Keyword If Any Tests Failed Delete K8s Cluster ${k8scluster_name}