test_oss launched if cicd node  available

Change-Id: Ief119e18851b5ec39103195ca183db1d82fc5eb8
Related-Prod: #PROD-29775(PROD:29775)
diff --git a/test_set/cvp-sanity/tests/test_oss.py b/test_set/cvp-sanity/tests/test_oss.py
index a9623db..9e919c5 100644
--- a/test_set/cvp-sanity/tests/test_oss.py
+++ b/test_set/cvp-sanity/tests/test_oss.py
@@ -3,7 +3,15 @@
 import json
 
 
-def test_oss_status(local_salt_client):
+def test_oss_status(local_salt_client, check_cicd):
+    """
+       # Get IP of HAPROXY interface from pillar using 'salt -C "I@docker:swarm:role:master" pillar.get haproxy:proxy:listen:stats:binds:address'
+       # Read info from web-page "http://{haproxy:proxy:listen:stats:binds:address}:9600/haproxy?stats;csv"
+       # Check that each service from list 'aptly', 'openldap', 'gerrit', 'jenkins', 'postgresql',
+                                'pushkin', 'rundeck', 'elasticsearch' :
+                * has UP status
+                * has OPEN status
+    """
     HAPROXY_STATS_IP = local_salt_client.pillar_get(
         tgt='docker:swarm:role:master',
         param='haproxy:proxy:listen:stats:binds:address')