Fix linting issues 77/71377/2
authorVictor Morales <v.morales@samsung.com>
Thu, 12 Nov 2020 01:52:09 +0000 (20:52 -0500)
committerRihab Banday <rihab.banday@ericsson.com>
Thu, 12 Nov 2020 13:14:46 +0000 (13:14 +0000)
This change fixes some linting issues accumulated from previous
patchsets and ignored by the CI jobs.

Signed-off-by: Victor Morales <v.morales@samsung.com>
Change-Id: I0bf2e67aee786505e9c01570d4d8d99df62b1f9f
Reviewed-on: https://gerrit.opnfv.org/gerrit/c/kuberef/+/71377
Tested-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
Tested-by: Georg Kunz <georg.kunz@ericsson.com>
Reviewed-by: Georg Kunz <georg.kunz@ericsson.com>
Reviewed-by: Michael Pedersen <michaelx.pedersen@intel.com>
.gitlab-ci.yml
.rstcheck.cfg [new file with mode: 0644]
functions.sh
playbooks/roles/bmra-config/tasks/main.yaml

index e502b35..fecf145 100644 (file)
@@ -1,3 +1,4 @@
+---
 # GitLab CI config file to deploy RI2 on baremetal infra
 # and run RC2 compliance tests on the deployed platform.
 # TODO add tox jobs
diff --git a/.rstcheck.cfg b/.rstcheck.cfg
new file mode 100644 (file)
index 0000000..a9cf023
--- /dev/null
@@ -0,0 +1,3 @@
+[rstcheck]
+report=warning
+ignore_substitutions=today
index aa9bf68..fd19c46 100755 (executable)
@@ -133,19 +133,18 @@ EOF
 
 # Setup networking on provisioned hosts (Adapt setup_network.sh according to your network setup)
 setup_network() {
-# Set Upper limit of number nodes in RI2 cluster (starting from 0)
-NODE_MAX_ID=$(($(yq r "$CURRENTPATH"/hw_config/"$VENDOR"/idf.yaml --length idf.kubespray.hostnames)-1))
-
-for idx in $(seq 0 "$NODE_MAX_ID")
-do
-    NODE_IP=$(get_host_pxe_ip "nodes[${idx}]")
-# SSH to jumphost
-    # shellcheck disable=SC2087
-    ssh -o StrictHostKeyChecking=no -tT "$USERNAME"@"$(get_vm_ip)" << EOF
+    # Set Upper limit of number nodes in RI2 cluster (starting from 0)
+    NODE_MAX_ID=$(($(yq r "$CURRENTPATH"/hw_config/"$VENDOR"/idf.yaml --length idf.kubespray.hostnames)-1))
+
+    for idx in $(seq 0 "$NODE_MAX_ID"); do
+        NODE_IP=$(get_host_pxe_ip "nodes[${idx}]")
+        # SSH to jumphost
+        # shellcheck disable=SC2087
+        ssh -o StrictHostKeyChecking=no -tT "$USERNAME"@"$(get_vm_ip)" << EOF
 ssh -o StrictHostKeyChecking=no root@${NODE_IP} \
     'bash -s' <  ${PROJECT_ROOT}/${VENDOR}/setup_network.sh
 EOF
-done
+    done
 }
 
 # k8s Provisioning (currently BMRA)
index 19b011a..e7d8df9 100644 (file)
@@ -1,3 +1,4 @@
+---
 - name: write BMRA config
   template:
     src: "inventory.ini"