From 6218b9938b523c545a7610a3c77d6a19aea81e1a Mon Sep 17 00:00:00 2001 From: Kenny Woodson Date: Thu, 19 Jan 2017 12:24:52 -0500 Subject: Adding version to lib_openshift --- roles/lib_openshift/src/test/integration/route.yml | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 roles/lib_openshift/src/test/integration/route.yml (limited to 'roles/lib_openshift/src/test/integration/route.yml') diff --git a/roles/lib_openshift/src/test/integration/route.yml b/roles/lib_openshift/src/test/integration/route.yml deleted file mode 100644 index 6a96b334f..000000000 --- a/roles/lib_openshift/src/test/integration/route.yml +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/ansible-playbook -# ./route.yml -M ../../../library -e "cli_master_test=$OPENSHIFT_MASTER ---- -- hosts: "{{ cli_master_test }}" - gather_facts: no - user: root - tasks: - - name: create route - oc_route: - name: test - namespace: test - tls_termination: edge - cert_content: testing cert - cacert_content: testing cacert - service_name: test - host: test.example - register: routeout - - debug: var=routeout - - - name: get route - oc_route: - state: list - name: test - namespace: default - register: routeout - - debug: var=routeout - - - name: delete route - oc_route: - state: absent - name: test - namespace: default - register: routeout - - debug: var=routeout - - - name: create route - oc_route: - name: test - namespace: test - tls_termination: edge - cert_content: testing cert - cacert_content: testing cacert - service_name: test - host: test.example - register: routeout - - debug: var=routeout - - - name: create route noop - oc_route: - name: test - namespace: test - tls_termination: edge - cert_content: testing cert - cacert_content: testing cacert - service_name: test - host: test.example - register: routeout - - debug: var=routeout -- cgit v1.2.3