Add check of spaces at EOL in stage-test
[osm/tests.git] / robot-systest / testsuite / k8s_02-k8scluster_creation.robot
index f0b5eae..6225913 100644 (file)
@@ -13,7 +13,7 @@
 #   limitations under the License.
 
 *** Settings ***
-Documentation     [K8s-02] K8s cluster addition.
+Documentation   [K8s-02] K8s cluster addition.
 
 Library   OperatingSystem
 Library   String
@@ -22,22 +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
 
 
+*** Variables ***
+# K8s cluster name and version
+${k8scluster_name}   k8s02
+${k8scluster_version}   v1
+
 *** Test Cases ***
 Add K8s Cluster To OSM
-    Create K8s Cluster  %{K8S_CREDENTIALS}  ${k8scluster_version}  %{VIM_TARGET}  %{VIM_MGMT_NET}  ${k8scluster_name}
+
+    Create K8s Cluster   %{K8S_CREDENTIALS}   ${k8scluster_version}   %{VIM_TARGET}   %{VIM_MGMT_NET}   ${k8scluster_name}
 
 Remove K8s Cluster from OSM
     [Tags]   cleanup
-    Delete K8s Cluster  ${k8scluster_name}
+
+    Delete K8s Cluster   ${k8scluster_name}
 
 *** Keywords ***
 Suite Cleanup
-    [Documentation]  Test Suit Cleanup: Deleting K8s Cluster
-    Run Keyword If Any Tests Failed  Delete K8s Cluster  ${k8scluster_name}
+    [Documentation]   Test Suit Cleanup: Deleting K8s Cluster
+
+    Run Keyword If Any Tests Failed   Delete K8s Cluster   ${k8scluster_name}