summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/integration/route.yml
blob: 6a96b334f581f9db20e3ec3cb96404b49fbddc5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/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