From 618427998d0321c83c0f277629c63026d77e128c Mon Sep 17 00:00:00 2001 From: Linus Sehn Date: Fri, 21 Jan 2022 15:43:45 +0100 Subject: [PATCH] add .drone.yml --- .drone.yml | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9276e13 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,87 @@ +--- +kind: pipeline +type: docker +name: test from cont.test (meitner) + +node: + cont: test + +steps: + - name: test innernet connections from meitner + pull: if-not-exists + image: nixery.dev/shell/fping + commands: | + fping \ + 10.200.64.1 \ + 10.200.64.2 \ + 10.200.64.3 \ + 10.200.64.4 \ + 10.200.64.5 \ + 10.200.64.7 \ + 10.200.64.8 + +--- +kind: pipeline +type: docker +name: test from cont1.noris + +node: + cont1: noris + +steps: + - name: test innernet connections from cont1.noris + pull: if-not-exists + image: nixery.dev/shell/fping + commands: | + fping \ + 10.200.64.1 \ + 10.200.64.3 \ + 10.200.64.4 \ + 10.200.64.5 \ + 10.200.64.6 \ + 10.200.64.7 \ + 10.200.64.8 + +--- +kind: pipeline +type: docker +name: test from cont2.noris + +node: + cont2: noris + +steps: + - name: test innernet connections from cont2.noris + pull: if-not-exists + image: nixery.dev/shell/fping + commands: | + fping \ + 10.200.64.1 \ + 10.200.64.2 \ + 10.200.64.4 \ + 10.200.64.5 \ + 10.200.64.6 \ + 10.200.64.7 \ + 10.200.64.8 + +--- +kind: pipeline +type: docker +name: test from cont1.noris + +node: + cont1: plutex + +steps: + - name: test innernet connections from cont1.plutex + pull: if-not-exists + image: nixery.dev/shell/fping + commands: | + fping \ + 10.200.64.1 \ + 10.200.64.2 \ + 10.200.64.3 \ + 10.200.64.5 \ + 10.200.64.6 \ + 10.200.64.7 \ + 10.200.64.8