summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/integration/route.yml
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-01-19 12:24:52 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-01-20 11:52:10 -0500
commit6218b9938b523c545a7610a3c77d6a19aea81e1a (patch)
treeb98fa3931aff326c10fec573c442e283d3d6f9bf /roles/lib_openshift/src/test/integration/route.yml
parent836bd8115c7d9386b9f5d3d6cca41785853c16c7 (diff)
downloadopenshift-6218b9938b523c545a7610a3c77d6a19aea81e1a.tar.gz
openshift-6218b9938b523c545a7610a3c77d6a19aea81e1a.tar.bz2
openshift-6218b9938b523c545a7610a3c77d6a19aea81e1a.tar.xz
openshift-6218b9938b523c545a7610a3c77d6a19aea81e1a.zip
Adding version to lib_openshift
Diffstat (limited to 'roles/lib_openshift/src/test/integration/route.yml')
-rw-r--r--roles/lib_openshift/src/test/integration/route.yml58
1 files changed, 0 insertions, 58 deletions
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